mql-for-begginers/Indicators/Examples/PVT.mq5
2025-07-22 18:30:17 +03:00

85 lines
3.1 KiB
MQL5

//+------------------------------------------------------------------+
//| PVT.mq5 |
//| Copyright 2000-2025, MetaQuotes Ltd. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2000-2025, MetaQuotes Ltd."
#property link "https://www.mql5.com"
#property description "Price and Volume Trend"
#property indicator_separate_window
#property indicator_buffers 1
#property indicator_plots 1
#property indicator_type1 DRAW_LINE
#property indicator_color1 clrDodgerBlue
//--- input parametrs
input ENUM_APPLIED_VOLUME InpVolumeType=VOLUME_TICK; // Volumes
//--- indicator buffer
double ExtPVTBuffer[];
//+------------------------------------------------------------------+
//| PVT initialization function |
//+------------------------------------------------------------------+
void OnInit()
{
//--- define indicator buffer
SetIndexBuffer(0,ExtPVTBuffer);
//--- set indicator digits
IndicatorSetInteger(INDICATOR_DIGITS,_Digits);
//--- name for DataWindow and indicator label
IndicatorSetString(INDICATOR_SHORTNAME,"PVT");
//--- set index empty value
PlotIndexSetDouble(0,PLOT_EMPTY_VALUE,0.0);
//--- set index draw begin
PlotIndexSetInteger(0,PLOT_DRAW_BEGIN,1);
}
//+------------------------------------------------------------------+
//| PVT iteration function |
//+------------------------------------------------------------------+
int OnCalculate(const int rates_total,
const int prev_calculated,
const datetime &time[],
const double &open[],
const double &high[],
const double &low[],
const double &close[],
const long &tick_volume[],
const long &volume[],
const int &spread[])
{
if(rates_total<2)
return(0);
//--- start calculation
int pos=prev_calculated-1;
//--- correct position, when it's first iteration
if(pos<0)
{
pos=1;
ExtPVTBuffer[0]=0.0;
}
//--- main cycle
if(InpVolumeType==VOLUME_TICK)
CalculatePVT(pos,rates_total,close,tick_volume);
else
CalculatePVT(pos,rates_total,close,volume);
//--- OnCalculate done. Return new prev_calculated.
return(rates_total);
}
//+------------------------------------------------------------------+
//| Calculate PVT by volume argument |
//+------------------------------------------------------------------+
void CalculatePVT(const int pos,
const int rates_total,
const double& close[],
const long& volume[])
{
for(int i=pos; i<rates_total && !IsStopped(); i++)
{
double prev_close=close[i-1];
//--- calculate PVT value
if(prev_close!=0)
ExtPVTBuffer[i]=((close[i]-prev_close)/prev_close)*volume[i]+ExtPVTBuffer[i-1];
else
ExtPVTBuffer[i]=ExtPVTBuffer[i-1];
}
}
//+------------------------------------------------------------------+