Medium Level Price AFL for Amibroker (AFL)
nicsandy over 14 years ago Amibroker (AFL)
this is my first trading system.. very simple based on price for each days..
Indicator / Formula
Copy & Paste Friendly
/////////////////////////////V-TRADE - MLP-V-traders Academy////////////////////////////////
TimeFrameSet(inDaily);
AVGd = (O + C)/2;
" PPd:\t "+ AVGd;
TimeFrameRestore();
Buy = O < Ref(AVGd ,-1) AND (O!=C);
Sell = C < Ref(AVGd ,-1)AND (O!=C);
shape = Buy * shapeUpArrow + Sell * shapeDownArrow;
PlotShapes( shape, IIf( Buy, colorOrange, colorRed ), 0, IIf( Buy, Low, High ) );
Plot( TimeFrameExpand(AVGd,inDaily,expandFirst),"MLP",colorGreen,styleStaircase);
///////// V-TRADE - MLP End ////////2 comments
Leave Comment
Please login here to leave a comment.
What’s this?
Was ist das?
Shto eta?
Graphic appearance is almost…nothing!
BuySell signals…the same!
What the he*l is this? LOL.