1798 Indicators

Percentage Oscillator of Price

Percentage Oscillator of Price A percentage oscillator of the price allows performing the comparing the time periods independently on the price. Calculation: PPO = ( EMA(CLOSE, 12) – EMA(CLOSE, 26) ) / EMA(CLOSE, 26) SIGNAL = SMA(PPO, 9) Signals: 1.Positive/Negative divergence 2.The intersection of the indicator with its signal line. 3.A condition of overbuying/overselling

Read More

Market Time

Market Time Input Parameters: extern int     NumberOfDays=50; extern string  AsiaBegin   =”01:00″; extern string  AsiaEnd     =”10:00″; extern color   AsiaColor   =Goldenrod; extern string  EurBegin    =”07:00″; extern string  EurEnd      =”16:00″; extern color   EurColor    =Tan; extern string  USABegin    =”14:00″; extern string  USAEnd      =”23:00″; extern color   USAColor    =PaleGreen;

Read More

Mouteki-Demark trend new

Mouteki-Demark trend new Input Parameters:   extern int  showBars=200;      // if showBars= 0 so the indicator will be shown for all the chart extern int  LevDP=2;           // Demar Pint Levels; 2 = central bar will be higher (lower) then 2 bars on the left side and 2 bars on the right one. extern int  qSteps=1;          // number of steps/ no…

Read More

Kwan

Kwan Input Parameters:   extern int Count_Bars=1000;

Read More

i_EF_distance

i_EF_distance Indicator i_EF_distance. Input Parameters: extern int Length=10; extern double Power=2;

Read More

i-BandsPrice

i-BandsPrice The parameters are the same with the Bollinger Bands plus I added smoothing.   BandsPeriod – Period BandsShift – Shift BandsDeviations – Deviation from the main line Slow – Smoothing The interpretation is simple. The line of the indicator shows the position of the price in relation to the Bollinger Bands. The outing of…

Read More