Skip to main content

Medium Level Price AFL for Amibroker (AFL)

nicsandy over 14 years ago Amibroker (AFL)

  • Rating:
    5 / 5 (Votes 1)
  • Tags:
    trading system, amibroker

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

1. morgen
over 14 years ago

What’s this?
Was ist das?
Shto eta?
Graphic appearance is almost…nothing!
BuySell signals…the same!

Leave Comment

Please login here to leave a comment.