Skip to main content

Behgozin Strength Finder for Amibroker (AFL)

hotaro3 over 13 years ago Amibroker (AFL)

  • Rating:
    3 / 5 (Votes 12)
  • Tags:
    trading system, amibroker, exploration

BehSSF
Behgozin Stock Strength Finder.
Simply It shows the Strength of any Stock so you can select the best stock
Also can be used as buy and sell system by crossing zero line
It can be used in daily, weekly or monthly time frame. Also you can see the results by Exploration
this indicator also uses future results but the number decreased to 3 points and for decreasing its effect during 6 day I calculated WMA in 6 days period

Screenshots

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("BehgozinStrengthFinder2");
//Behgozin Stock Strength Finder. 
//Simply It shows the Strength of any Stock so you can select the best stock
//Also can be used as buy and sell system by crossing zero line
// It can be used in daily, weekly or monthly time frame. Also you can see the results by Exploration
CLN= Ref(C,3);
Beh=((CLN - EMA(CLN, 10)) / EMA(CLN, 10)) * 100;
Plot(0,"",colorBlack,styleLine);
V2 = HHV(Beh,100);
V3 = LLV(Beh,100);
Beh1= WMA(Beh*(V2-V3),6);
Plot(Beh1, "(Buy or sell when crossing Zero)- Behgozin Strength Finder  ",4,4); 
Buy = Beh1>0;
Sell = Beh1>0;
Filter = Buy OR Sell;
Buy=ExRem(Buy,Sell); 
Sell=ExRem(Sell,Buy); 
AddColumn(Beh1,"Behgozin Stock Strength");
AddColumn(Buy, "Buy");
AddColumn(Sell, "Sell");
_SECTION_END();

17 comments

over 13 years ago

Brother hotaro….

i hope u r aware of tht ref function is used to refer previous Quotes.
i.e. u have to use it in ref(C,-3) manner. but if u use 3 instead of -3 then it will consider next yet to come 3 Quotes of the array Close.
i.e. It will look into future.
i.e. the signal generated now will change if the trend change caused in next coming 3 bars.
so there is the great chance tht u will be doomed.
please check it urself in live market.

thanx!

3. hotaro3
over 13 years ago

Dear Extremist, You are exactly right I said that for decreasing future effect I used only 3 points and also I made WMA for It for 6 days, so in worst condition half of your points are real. on the other hand I do not promote using this indicator for live market but it can be useful for other market. Also the area os each curve below or above zero indicates strength of stock, so if you have a stock whth big area below zero you can expect strong increase in price during next days.

9. hotaro3
over 13 years ago

Dear Arvindid It works with all time frames- may be your no of data is insufficient

11. arian
over 13 years ago

Hi again,
Dear Friend, thnks for nice work and for sharing.

14. rob hoot
over 13 years ago

I try to convert this code into Metastock but the result is not the same as in Amibroker because of the following line : CLN=Ref(C,3). Does someone please know how to overcome this problem? Thanks a lot in advance! This is what I have till now:

CLN:     Ref(C,+3)   ?????


BEH:     ((Fml("CLN") - Mov(Fml("CLN"),10,E))/Mov(Fml("CLN"),10,E)) * 100

V2:      HHV (Fml ("BEH") ,100)

V3:      LLV (Fml ("BEH") ,100)

BEH1:    Mov(Fml("BEH")*(Fml("V2")-Fml("V3")),6,W)

Leave Comment

Please login here to leave a comment.