Help in trading strategy

#1
Dear Friends.

I'm using amibroker buy sell signal for trading commodity market..

I need amibroker formula to trade in 1 min or 3 min chart and suggest me best script to trade in that chart .

Thanks all .
 
#2
in mcx trade with 10mins or 15mins chart for intraday. trading in below 10mins chart in mcx market its risky
Thanks sir for ur kind reply .

plz suggest me some buy sell signal AFL to trade sir and also suggest me afl so that i should generate brokerage commission also ..

plz advice me sir.
 

avny

Well-Known Member
#4
Thanks sir for ur kind reply .

plz suggest me some buy sell signal AFL to trade sir and also suggest me afl so that i should generate brokerage commission also ..

plz advice me sir.
there are hundreds of AFL available,just google it,

also there is a thread of AFL,here itself,just search

but come to think of it,if AFL could make money,why anybody will post,he will be busy in making money instead :rofl::rofl::rofl:
 
#6
Here is ur Crude Afl posted by Cubt

Code:
_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 ) ) ));

SD = StochD(8, 3, 3);
MH = MACD(8, 21) - Signal(8, 21, 5);
trendup = IIf(MH > 0 OR (MH > 0 AND MH > Ref(MH, -1)) AND RSI(3) >50 AND SD < 80 AND SD > Ref(SD, -1) AND ValueWhen(C,O<C), colorBlue, colorWhite);
trendcolor = IIf(MH < 0 OR (MH < 0 AND MH < Ref(MH, -1)) AND RSI(3) <50 AND SD > 20 AND SD < Ref(SD, -1) AND ValueWhen(C,O>C), colorRed, trendup);
Plot( C, "Close", trendcolor, styleCandle | styleThick );

_SECTION_END();

no=Param( "Swing", 5, 1, 55 );
res=HHV(H,no);
sup=LLV(L,no);
tsl=IIf(ValueWhen(IIf(C>Ref(res,-1),1,IIf(C<Ref(sup,-1),-1,0))!=0,IIf(C>Ref(res,-1),1,IIf(C<Ref(sup,-1),-1,0)),1)==1,sup,res);
Plot(tsl, _DEFAULT_NAME(), colorBlue, styleStaircase);
Buy = Cross(C,res) ;
Sell = Cross(sup,C) ;
_SECTION_END();

a=C;
g=(EMA(Close,3) * (2 / 4 - 1)-EMA(Close,5) * (2 / 6 - 1)) / (2 /4- 2 /6);
e=Ref(tsl,-1);
Buy = Cross(C,tsl) ;
Sell = Cross(tsl,C) ;
SellPrice=ValueWhen(Sell,e,1);
BuyPrice=ValueWhen(Buy,e,1);
Long=Flip(Buy,Sell);
Shrt=Flip(Sell,Buy );
Filter=Buy OR Sell;
Buy = Cross(C,tsl) ;
Sell = Cross(tsl,C) ;
shape = Buy * shapeUpArrow + Sell * shapeDownArrow;
PlotShapes( shape, IIf( Buy, colorGreen, colorRed ),0, IIf( Buy, Low, High ) );
a1=Ref(tsl,-1);

dist = 0.8*ATR(1); //0.8
dist1 = 1.8*ATR(1); //1.2
for( i = 0; i < BarCount; i++ ) 
{ 
if( Buy[i] ) 
{
PlotText( "Buy:" + L[ i ] + "\nTgt: " + (a1[i]*1.005) + "\nSL: " + (tsl[i]*0.9975), i, L[ i ]-dist[i], colorLime);
}
if( Sell[i] )
{
PlotText( "Sell:" + H[ i ] + "\nT: " + (a1[i]*0.995) + "\nSL: " + (tsl[i]*1.0025), i, H[ i ]+dist1[i], colorBlack); 
}
}
:thumb:
 

Cubt

Algo Trader
#8
Shruti,

If u r using any afl, pls share that as well. It would be helpful
 
#10
Shruti,

If u r using any afl, pls share that as well. It would be helpful

Good morning Cubt,

I do use trendline breakout system...

Mostly i believe in using basic (Trendlines , Fibonacci ret, Support resis and PH-PL )... I do get best of result while using these rather then when i was using afl's.

Happy trading