Rank: Newbie
Groups: Registered Users, Subscribers Joined: 7/20/2015(UTC) Posts: 1
|
hi
i need help to convert amiproker afl to meatastock , please help me
who can do it and convert it , please
this is afl amibroker formla
====================================================
SetChartBkGradientFill(1,23);
_SECTION_BEGIN("Finder");
ttttt2 = Ref(C,-1);
ttttt3=Ref(C,30);
trrrrr2 = MA(ttttt2,30);
trrrrr3=MA(ttttt3,30);
Sl1=((trrrrr3+trrrrr2)*trrrrr3)/200;
Plot(Sl1,"sl1",colorGold,styleLine+styleDots|styleThick);
ttttt4 = Ref(C,-7);
ttttt5=Ref(C,45);
trrrrr3 = MA(ttttt4,45);
trrrrr2=MA(ttttt5,45);
Sl2=((trrrrr2+trrrrr3)*trrrrr2)/200;
Plot(Sl2,"sl2",colorGreen,styleLine+styleDots|styleThick);
Plot(150,"",colorWhite,styleLine);
_SECTION_END()
;SetSortColumns(-2);
uy= nwbull=sl1 > 150 AND sl2 > 150 ;
ell=nwbear=sl1 < 150 AND sl2 < 150 ;
uy = ExRem( uy, ell );
ell = ExRem( ell, uy );
PlotShapes(IIf(uy,shapeUpArrow,Null),colorGreen,0,150,-10);
PlotShapes(IIf(ell,shapeDownArrow,Null),colorRed,0,150,-10);
Edited by user Monday, July 20, 2015 3:35:54 PM(UTC)
| Reason: Not specified
|