Forum

Tester Symbol Count is always 1

Hey, when I test my EA with more than one symbol still the symbol count is only one. When this one will be incremented when I add more symbols to my test Here's my code string symbolList[ 2 ] = { "EURUSD" , "USDJPY" }; bool isTradeAllowed = true ; int OnInit (){ return ( INIT_SUCCEEDED ); } void

Add time_msc in MqlTIck

Hey, I was adding ticks to my custom symbol through CustomTicksAdd() which is adding successfully when time_msc = 0 (default) But when I try to add time_msc with milliseconds/microseconds, it returns incorrect tick data errors How to feed milliseconds with time_msc Kindly Help! Here's My Code void

Custom Commissions

Hey When I add Commissions By "Instant by deal volume " its adding commissions But when I add Commissions Buy "Instant by deal value" its not getting added The only option working in the dropdown of charges is "Instant by deal volume" all other options are not working Why is that happening

Customize Strategy Tester Report

Hey, Is it possible to customize the strategy tester report which can be exported to xlsx or html format I just need to remove few fields in the output report...Is that possible

Profits & all other Fields are not getting calculated for custom symbol

Profits & all other Fields are not getting calculated for custom symbol in strategy tester .. I have uploaded the setting of my custom symbol Kindly help me how to set this thing up

Profits & All Other Strategy Tester Fields Not Calculating For Custom Symbols

Hey, I have created a custom symbol and changed the tick size, volume and other setting as per the symbol. Trades are successfully getting placed in the strategy tester But no other fields are getting calculated. Example Profits, drawdown, etc ( all strategy tester fields ) What is the actual

Custom Realtime data

I have created a custom symbol I need to pass realtime live data to that symbol I will record live data in csv file using python What is the actual way to pass that live data to MT5 symbols Do I need to use MetaAPI or is there any other way of doing it

Call php file from mql5 ea

Hi, How to call a php file which is hosted in my server? How to pass post variables from mql5 ea to php

How to run or call Python script from .mq5 expert advisor

Hey. I have created a file called python.py in Scripts/Python.py I just need to call/run that file from my .mq5 expert advisor ... Is that possible