45590/mql5/Include/MQL5Book/IndCommon.mqh

23 lines
929 B
MQL4

//+------------------------------------------------------------------+
//| IndCommon.mqh |
//| Copyright 2021, MetaQuotes Ltd. |
//| https://forge.mql5.io |
//+------------------------------------------------------------------+
#define ON_CALCULATE_STD_FULL_PARAM_LIST \
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[]
#define ON_CALCULATE_STD_SHORT_PARAM_LIST \
const int rates_total, \
const int prev_calculated, \
const int begin, \
const double &data[]
//+------------------------------------------------------------------+