sharing one of the profitable high reward customized strategy

vsreeram77

Active Member
#1
trading based on 73.6% logic
_______________________________

step 1 : Calculate High, and Low values of EOD

step 2 : Calculate High-low value

step 3 : Calculate 73.6 % of High-low value
and name as spread.

buy entry :
_________

Add spread value with Low value, that will be
the buy entry

stoploss is 0.5 % below of buy entry

target is 1% above of buy entry

per day max. 2 buy entries allowed.

sell entry :
___________

less spread value from high value, that will be
sell entry

stoploss is 0.5% above the sell entry

target is 1 % below sell entry


per day max. 2 sell entries allowed.
 

RadhuK

Well-Known Member
#3
if anybody helps amibroker afl with scanner , will be useful to all
yH = TimeFrameGetPrice("H", inDaily, -1, expandFirst);
yL = TimeFrameGetPrice("L", inDaily, -1, expandFirst);
SPREAD = yH -yL ;
SPRD = SPREAD * 73.6 / 100 ;

BuyQ = yL + SPRD ;
ShortQ = yH - SPRD ;

ticker = 0.1;

Buy = Cross(H,BuyQ) OR Cross(BuyQ,L);
Short = Cross(Shortq,L) OR Cross(H,ShortQ);
Sell = False ;
Cover = False ;

BuyPrice = BuyQ + ticker ;
ShortPrice = ShortQ - ticker ;

ISLB = BuyPrice - (BuyPrice * 0.5 / 100) ;
PSLB = BuyPrice + (BuyPrice * 1.0 / 100) ;

ISLS = ShortPrice + (ShortPrice * 0.5 / 100) ;
PSLS = ShortPrice - (ShortPrice * 1.0 / 100) ;

ISL = IIf(Buy, ISLB,ISLS) ;
PSL = IIf(Buy ,PSLB,PSLS) ;

ApplyStop(stopTypeLoss,stopModePoint,Ref(ISL,-1),1,False,0);
ApplyStop(stopTypeProfit,stopModePoint,Ref(PSL,-1),1,False,0);
Buy- ExRem(Buy,Short); Short=ExRem(Short,Buy);
 

vsreeram77

Active Member
#4
yH = TimeFrameGetPrice("H", inDaily, -1, expandFirst);
yL = TimeFrameGetPrice("L", inDaily, -1, expandFirst);
SPREAD = yH -yL ;
SPRD = SPREAD * 73.6 / 100 ;

BuyQ = yL + SPRD ;
ShortQ = yH - SPRD ;

ticker = 0.1;

Buy = Cross(H,BuyQ) OR Cross(BuyQ,L);
Short = Cross(Shortq,L) OR Cross(H,ShortQ);
Sell = False ;
Cover = False ;

BuyPrice = BuyQ + ticker ;
ShortPrice = ShortQ - ticker ;

ISLB = BuyPrice - (BuyPrice * 0.5 / 100) ;
PSLB = BuyPrice + (BuyPrice * 1.0 / 100) ;

ISLS = ShortPrice + (ShortPrice * 0.5 / 100) ;
PSLS = ShortPrice - (ShortPrice * 1.0 / 100) ;

ISL = IIf(Buy, ISLB,ISLS) ;
PSL = IIf(Buy ,PSLB,PSLS) ;

ApplyStop(stopTypeLoss,stopModePoint,Ref(ISL,-1),1,False,0);
ApplyStop(stopTypeProfit,stopModePoint,Ref(PSL,-1),1,False,0);
Buy- ExRem(Buy,Short); Short=ExRem(Short,Buy);
Thank you very much for your kind support..
 

Similar threads