My afl collection

Status
Not open for further replies.

ayush2020

Well-Known Member
1st part PATHFINDER by signrc small ver of southbreeze - southwind
2nd part RADAR by KarthikMarar dublicate & small ver of radar 2.2 - southwind
3rd part VOLUMESPIKER (older ver) probably by mrtq13 (not sure)
can any body tell how that signals work in path finder ?? where to book profit and again where to take positions ???
 

gunsho

Well-Known Member
my point is we dont want a museum of afl's. we just need JUST ONE strategy.. just one&only good strategy..
ofcourse southwinds work and my trading style similar that is almost "trenD is my friend".
may be its useles to others.
may be for few members i am gabbar singh:annoyed:
but thats the way i am:p
Didn't want to debate which AFL is better or ONE strategy is good for everyone (as that is not the intention here), but looks like there is a big difference of opinion between amibrokerfans and shivangi (and many others) :( It is not recommended to have in one thread with huge difference in thought process.

Amibrokerfans, suggest you to open a new thread with the intention of finding the ONE strategy :thumb: That doesn't seems to be the interest of others here. Have a great week ahead.
 

johnnypareek

Well-Known Member
Why You Fighting For One Afl.

Trust Me After You Get This Afl You Will Regret That Why I Waste My Time To Search This Crap Afl :p

Colorfull Means Holy Grail ?

Frgt About Afl

Start Learning Charts

Otherwise You Will Keep Searching Whole Life Of Afl Only
Agree bro,

I have used this years ago. What u will get is looking into future. Though, information on chart in this is good.

okay i guess its ver 14 and not 13 yes i think i have this have to search to cool few guys excitement.

check attachment n confirm plez
johnny
 
Last edited:

amibrokerfans

Well-Known Member
gunsho
ok. i am also thinking about it! i did some research on southwind's work. better to open my own thread, which will not be only about his "afl", but will be also about his group, his work, his psychology,the reason behind his indicators etc. and ofcourse criticism will be most welcome in my thread.
sorry shivangi and other members, i am leaving yr thread. u pls carry on..
 
gunsho
ok. i am also thinking about it! i did some research on southwind's work. better to open my own thread, which will not be only about his "afl", but will be also about his group, his work, his psychology,the reason behind his indicators etc. and ofcourse criticism will be most welcome in my thread.
sorry shivangi and other members, i am leaving yr thread. u pls carry on..
I went thru all the post...and still not sure what AFL u looking for?
 

TradersZone

Well-Known Member
deleted.............
Shivangi Why You Deleting After Posting.My Request To Members Don't Play Games.If You Really Willing To Share Just Share And Ignore Bad Things, People Will Thanks To You.

Better To Be Simple Person Then Stubborn :annoyed:
 

shivangi77

Well-Known Member
Bollinger Bands Entry (Repeated as file removed from mediafire)





Code:
_SECTION_BEGIN("Price");
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) Vol " +WriteVal( V, 1.0 ) +" {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 )) ));
Plot( C, "Close", ParamColor("Color", colorYellow ), styleBar, styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
if( ParamToggle("Tooltip shows", "All Values|Only Prices" ) )
{
ToolTip=StrFormat("Open: %g\nHigh: %g\nLow: %g\nClose: %g (%.1f%%)\nVolume: "+NumToStr( V, 1 ), O, H, L, C, SelectedValue( ROC( C, 1 )));
}
_SECTION_END();

_SECTION_BEGIN("EMA");
P = ParamField("Price field",-1);
Periods = Param("Periods", 20, 2, 200, 1 );
Plot( EMA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") );
_SECTION_END();

_SECTION_BEGIN("BB-EMA");
Tp=(H+L+C)/3;
Per = Param("EMA Periods", 20, 2, 200, 1);
stper=Param("StDev Period",20,10,30,1);
w=Param("Width",2,0.5,4,0.5);
BBup=EMA(tp,per)+w*StDev(C,stper);
BBdn=EMA(tp,per)-w*StDev(C,stper);
BB_Mid=EMA(((BBup+BBdn)/2),5);

Plot (bbup,"BB-UP",ParamColor( "Color", colorLightGrey ),styleLine);
Plot (bbdn,"BB-DN",ParamColor( "Color", colorLightGrey ),styleLine);
Plot (bb_mid,"BB_Mid",ParamColor( "Color", colorBlue ),styleLine);
PlotOHLC(BBup,BBup,BBdn,BBdn,"BB-EMA", ParamColor("color",colorDarkOliveGreen), styleCloud);


_SECTION_END();


//TRENDING RIBBON
// Paste the code below to your price chart somewhere and green ribbon means both
// both MACD and ADX trending up so if the red ribbon shows up the MACD and the ADX 
// are both trending down.
_SECTION_BEGIN("trending ribbon");
uptrend=PDI()>MDI() AND MACD()>Signal();
downtrend=MDI()>PDI() AND Signal()>MACD();
Plot( 2, /* defines the height of the ribbon in percent of pane width */"ribbon",
IIf( uptrend, colorGreen, IIf( downtrend, colorRed, 0 )), /* choose color */
styleOwnScale|styleArea|styleNoLabel, -0.5, 100 );
_SECTION_END();
_SECTION_BEGIN("Price");
//SetChartOptions(0,chartShowArrows|chartShowDates);
//_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, 
//SelectedValue( ROC( C, 1 ) ) ));
//Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); 
_SECTION_END();
//=====================================================================================

top1=BBandTop(p,20,1);
bot1=BBandBot(p,20,1);
top2=BBandTop(p,20,2);
bot2=BBandBot(p,20,2);
stocup=StochK()>StochD();
MACDup=MACD()>Signal();
Lim=ADX()<30 AND StochK()<80;

Buy=Cross(C,top1) AND C>=O OR
    Cross(MACD(),Signal()) AND stocup AND C>top1 AND C>=O AND lim OR
    Cross(StochK(),StochD()) AND C>top1 AND StochK()<50 AND C>=O AND Lim;
Sell=Cross(top1,C);

PlotShapes(IIf(Buy,shapeUpArrow,shapeNone),colorBlue,0,Low,Offset=-15);
PlotShapes(IIf(Sell,shapeDownArrow,shapeNone),colorRed,0,High,Offset=-15);
 

shivangi77

Well-Known Member
Fishnet





Trade, when there is turn in Net.

Code:
/* This code plot fishnet with rainbow colors. I use 30 MA per color.

*/



_SECTION_BEGIN("");
Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style", styleCandle, maskPrice ) );

net= 30; // This value can be changed. It`s how many MA:s every color have.


for (i=1; i<net;i++) {

Plot(MA(Close,i),"",colorDarkRed,styleLine);

}

for (i=net; i<2*net;i++) {

Plot(MA(Close,i),"",colorOrange,styleLine);

}

for (i=2*net; i<3*net;i++) {

Plot(MA(Close,i),"",colorGold,styleLine);

}

for (i=3*net; i<4*net;i++) {

Plot(MA(Close,i),"",colorLime,styleLine);

}

for (i=4*net; i<5*net;i++) {

Plot(MA(Close,i),"",colorBlue,styleLine);

}

for (i=5*net; i<6*net;i++) {

Plot(MA(Close,i),"",colorIndigo,styleLine);

}

for (i=6*net; i<7*net;i++) {

Plot(MA(Close,i),"",colorViolet,styleLine);

}



_SECTION_END();
 
Status
Not open for further replies.

Similar threads