SetIndexArrow() PlotIndexSetInteger(0,PLOT_ARROW,213); SetIndexBuffer() SetIndexBuffer(0,MABuffer,INDICATOR_DATA); // or INDICATOR_CALCULATIONS SetIndexDrawBegin() PlotIndexSetInteger(0,PLOT_DRAW_BEGIN,KPeriod); SetIndexEmptyValue() PlotIndexSetDouble(0,PLOT_EMPTY_VALUE,0.0); SetIndexLabel() ...
nice!!!
MQL4 Source Code Library for MetaTrader 4 - free download of expert advisors, indicators, scripts and libraries.
I am building a Indicator to look at Tick Imbalances. However, sometimes the indicator works while other times it crashes the terminal. I have narrowed down the issue to be the call to CopyTick calls. More specifically this function Code: int get_ticks( const datetime from, const datetime ...
MQL4/MQL5 函数变化对照表|MT5编程交流 MQL4/MQL5 函数变化对照表 管理提醒:本帖被 mt5 从 MQL5语言教学 移动到本区(2011-12-18)
DRAW_ARROW类型箭头代码 PlotIndexSetInteger, PlotIndexGetInteger PLOT_ARROW_SHIFT DRAW_ARROW类型垂直箭头转换 PlotIndexSetInteger, PlotIndexGetInteger PLOT_COLOR_INDEXES 颜色数量 PlotIndexSetInteger, PlotIndexGetInteger PLOT_DRAW_BEGIN 在DataWindow中没有描绘和值的原始字节数量 PlotIndexSetInteger, PlotIndexGetInte...
SetIndexArrow()PlotIndexSetInteger(0,PLOT_ARROW,213); SetIndexBuffer()SetIndexBuffer(0,MABuffer,INDICATOR_DATA); // or INDICATOR_CALCULATIONS SetIndexDrawBegin()PlotIndexSetInteger(0,PLOT_DRAW_BEGIN,KPeriod); SetIndexEmptyValue()PlotIndexSetDouble(0,PLOT_EMPTY_VALUE,0.0); ...
#property indicator_plots 7IndicatorCounted()const int prev_calculatedIndicatorDigits()IndicatorSetInteger(INDICATOR_DIGITS,_Digits);IndicatorShortName()IndicatorSetString(INDICATOR_SHORTNAME,name);SetIndexArrow()PlotIndexSetInteger(0,PLOT_ARROW,213);SetIndexBuffer()SetIndexBuffer(0,MABuffer,INDICATOR_DATA); ...
PlotIndexSetInteger(0, PLOT_ARROW, Mark); } for(int i = 0; i < TFS; ++i) { Handle[i] = iCustom(_WorkSymbol, TF[i], "IndWPR", WPRPeriod); if(Handle[i] == INVALID_HANDLE) return INIT_FAILED; } IndicatorSetInteger(INDICATOR_DIGITS, 2); IndicatorSetString(INDICATOR_...
A powerful multi-timeframe RSI dashboard that visually displays the overbought, oversold, and neutral RSI status across 9 different timeframes — from M1 to MN1. EA Stochastic Bollinger Bands Multi - Timeframe This MQL4 code implements an Expert Advisor (EA) that trades based on the Stochastic...