+91-0000000000

}

Monday – Friday : 9:00 AM – 6:30 PM

Hist vinod Volume

The Hist vinod Volume indicator tracks price trends by plotting the highest high and lowest low prices over a defined period. It assists traders in identifying potential trend reversals or continuations. Integrating Amibroker data feed enhances Hist vinod Volume analysis, providing real-time market information essential for accurate identification of pivotal price levels and making informed trading decisions.

/_SECTION_BEGIN("MACD HIst"); 

SetChartBkColor( colorBlack ) ;
f = Param("fast ema",12,1,50,1);
s = Param("Slow ema",26,2,100,1);
t = Param ("signal",9,1,50,1);
A1=EMA(C,f)-EMA(C,s);
a2 = EMA(a1,t);
Hist = a1-a2;
em = EMA(Hist,2);
col_hist= IIf(Hist > BBandTop( Hist, 5, 0.5 ),colorDarkGreen,IIf(Hist < BBandBot( Hist, 5, 0.5 ),colorDarkRed,colorYellow));
Plot (Hist,"Histogram",IIf(hist> Ref(hist,-1),colorBrightGreen,colorRed), styleLine+styleThick);
Plot (Hist,"",col_hist, styleHistogram+styleNoLabel);
Plot (EM,"",colorWhite, styleLine+styleNoLabel);
Plot(0,"",31,styleNoLabel);
_SECTION_END();

Buy=(LRef(Hist,-1));
Short=(H>Ref(H,-1) & Hist

Open chat
1
Hi, how can I help you?