General Trading Chat

pratapvb

Well-Known Member
Pls share this AFL Sir.

(If others using it,pls share.)
my AFL has lot of other frills, so just wrote one for above here

Code:
tf = 15 ;
p1 = 8 ;
p2 = 21 ;
expandmode = expandLast ;

tfs = tf * in1Minute ;

TimeFrameSet(tfs) ;

MAfast = EMA(C, p1) ;
MAslow = MA(C, p2) ;

TimeFrameRestore() ;

MAfaste = TimeFrameExpand(MAfast, tfs, expandmode) ;
MAslowe = TimeFrameExpand(MAslow, tfs, expandmode) ;

Plot(MAfaste, "15fast", colorBlack, styleThick|styleNoRescale) ;
Plot(MAslowe, "15slow", colorGreen, styleThick|styleNoRescale) ;
 

pratapvb

Well-Known Member
anaconda head being pushed down by green line :D

 

XRAY27

Well-Known Member
Xray Sir,

What was your logic of profit booking at 113 ,It was high at that moment
sirji,

my target for this put was 8222 fut level i.e., Day low,which is about to reach and at 8228 level it started failing so exited at 113..if day low is broken i would have reentered in the put once again..
 

eku

Well-Known Member
my AFL has lot of other frills, so just wrote one for above here

Code:
tf = 15 ;
p1 = 8 ;
p2 = 21 ;
expandmode = expandLast ;

tfs = tf * in1Minute ;

TimeFrameSet(tfs) ;

MAfast = EMA(C, p1) ;
MAslow = MA(C, p2) ;

TimeFrameRestore() ;

MAfaste = TimeFrameExpand(MAfast, tfs, expandmode) ;
MAslowe = TimeFrameExpand(MAslow, tfs, expandmode) ;

Plot(MAfaste, "15fast", colorBlack, styleThick|styleNoRescale) ;
Plot(MAslowe, "15slow", colorGreen, styleThick|styleNoRescale) ;
Pratap Sir,need little help on this ALF pls-

I want parameters of this AFL so that I can on-off it,on-off the lable,show the price in title on-off.

my purpose is,I want to use AMA AFL with this Black and Green code.

Black is working as a SL perfectly.
 

pratapvb

Well-Known Member
nf

dotted is half qty entries

 

pratapvb

Well-Known Member
Pratap Sir,need little help on this ALF pls-

I want parameters of this AFL so that I can on-off it,on-off the lable,show the price in title on-off.

my purpose is,I want to use AMA AFL with this Black and Green code.

Black is working as a SL perfectly.
if you are going to use the AFL, then why all this On-Off requirement?
 

Similar threads