Export Indicator’s Values – script MetaTrader 5

Export Indicator
After searching for such script, I decided to create mine, and decided to share it with the MQL5 community. This script exports indicator’s values to CSV File along with date and time (you can change the iCustom function parameters to change what indicator to export). Version 2: Enhanced code; Values are now exported as numbers … Read more

Trading signals function. Based on the values of the CCI indicator. – library MetaTrader 4

Trading signals function. Based on the values of the CCI indicator. - library for MetaTrader 4
Trading signals function. Based on the values of the CCI indicator. Add the function to the EA: #include <Signal.mqh> Condition if(GetSignal()==1) is for buys. Condition if(GetSignal()==-1) is for sells. External variables of the function: periodCCI – the period of averaging for calculation of the indicator. applied_price – Used price. It can be any of the … Read more