Forum

Strategy Tester crashed when using Indicator with FX Blue Trading Simulator New comment

I coded an Indicator which use a DLL file (I coded this DLL file to call Python function from C++). The Indicator works well on charts when trading without any bugs, but If I want it to use in FX Blue Simluator Visual chart to backtest it manually, MT4 crashes with this error: Fault bucket , type 0

Strategy Tester crashed when using Indicator with FX Blue Trading Simulator

I coded an Indicator which use a DLL file (I coded this DLL file to call Python function from C++). The Indicator works well on charts when trading without any bugs, but If I want it to use in FX Blue Simluator Visual chart to backtest it manually, MT4 crashes with this error: Fault bucket , type 0

Access violation read error and MT4 crash when using custom indicator and C++ DLL

Hello, I'm coding an Indicator which call a function from C++ DLL . I need to pass only Close rates to DLL and retrun a string from DLL. #import "PythonZones.dll" void CalculateZones( double &data[], double quantile, int arraySize, char &[]); #import

RSI and Moving Average in same window indicator crossover

Hi, I have a RSI indicator and a Moving Average in a same window indicator(RSI Window). Moving Average is applied to close price . How can I check for crossover of these indicators? I know RSI scale is different from Moving Average. But how can I scale both to 1 type ? Or how can I check for their

Fill Moving Average buffer from "rates_total"

Hello, I am trying to compare 2 different EMA from H1 timeframe with close price. But I get " Array out of range " error. I run this indicator on M2 timeframe. How Can I fill the MA buffer from rates_total? //+------------------------------------------------------------------+ //|