IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. 直播信号1: CLICK 折扣 价截止至 8 月 31 日。 每购买 10 件,价格将增加 100 美元。最终价格为 1999 美元 量子 EA 频道: 点击这里 ***购买 Quantum Queen MT5 即可免费获得...
Mql5 is outdated #property indicator_type1 DRAW_ARROW #property indicator_width1 5 #property indicator_color1 0xFF0015 #property indicator_label1 "Buy" Buffer1[i] = Low[i] - ATR[i]; //Set indicator value at Candlestick Low - Average True Range if (i == ...
Cancel Submit feedback Saved searches Use saved searches to filter your results more quickly Cancel Create saved search Sign in Sign up Reseting focus {{ message }} KonzACDC / MQL5_MT5_EA Public Notifications You must be signed in to change notification settings Fork 14 Star 32 ...
To do this, we will create an Expert Advisor for setting the opening and Stop Loss prices in the visual mode. Based on these parameters and your risk value, the EA will set the appropriate lot value and will open a position in the relevant direction. more... Share Metatrader 5 / ...
Data socket- Pushes data to client depending on the request via System socket. Live socket- Automatically pushes last candle when it closes. Streaming socket- Automatically pushes last transaction info every time it happens. Indicator data socket- automatically pushes indicator result values to the cl...
Data socket- Pushes data to client depending on the request via System socket. Live socket- Automatically pushes last candle when it closes. Streaming socket- Automatically pushes last transaction info every time it happens. Indicator data socket- automatically pushes indicator result values to the cl...
OnTesterPass 当TesterPas事件发生时在EA中调用这个函数,以便在策略测试中处理EA优化期间到达的新数据框架 事件处理 OrderCalcMargin 用入金货币,计算指定订单类型所需的保证金 交易函数 OrderCalcProfit 以入金货币计算基于传递参量的利润 交易函数 OrderCheck 检测是否有足够资金执行所需 交易操作. 交易函数 Order...
Releases the RSI indicator handle when the EA is removed.6. OnTick FunctionAs we all know, the OnTick function contains the core logic for detecting signals and executing trades.void OnTick() { static bool isNewBar = false; int newbar = iBars(_Symbol, _Period); static int prevBars = ...
这种EA的示例是Synchronize_Bars_Use_OnTimer.mq5,附于本文。 测试器的IndicatorRelease() 函数 # 完成单项测试以后,工具图表自动打开,显示完成的交易和EA中使用的指标。这有助于视觉上检查进出点,并且与指标的值进行比较。 注意: 在测试完成后自动打开的图表上显示的指标,会在测试完成后重新计算。即使这些指标
The GlobalVariableSet() function is used to assign a value to the variable. The two parameters are passed to the function: variable name (string) and its value (double type). Let's try to create a variable. Open MetaEditor, create a script and write the following code to its OnStart(...