Skip to main content

Variable Sine Cycle V1 for Amibroker (AFL)

Yudira over 10 years ago Amibroker (AFL)

  • Rating:
    3 / 5 (Votes 2)
  • Tags:
    oscillator, amibroker

Variable Sinewave Cycle can be used for determine cycle.

Screenshots

Indicator / Formula

Copy & Paste Friendly
Plot(C,"",colorBlack,styleCandle);
Val1=Param("Val1",3,1,50,0.1);
Val2=Param("Val2",3,1,50,0.1);
sinecycle=Prec(5*sin(BarIndex()/Val1+Val2),1);
Cycleb1=sin(BarIndex());
Cycles1=sin(BarIndex());
Plot(sinecycle,"Cycle",colorBlue,styleLine|styleNoLabel|styleOwnScale,-5,50);

2 comments

Leave Comment

Please login here to leave a comment.