Page 1 of 1

Broker ask/bid data collector

Posted: Sat Apr 08, 2017 5:03 pm
by bilbao
hello dear mladen

we always having different result with duckascopy data on backtest and when going to real, because this just tick data=symbol_date_time_price_volume and not anything

we need real data  {ask/bid data}

could you please make EA to collect broker ask/bid {ask/bid data:Symbol_Date_Time_Type_Price_Volume_Bid Price_Bid Size_Ask Price_Ask Size}

regard

Re: Broker ask/bid data collector

Posted: Sat Apr 08, 2017 5:41 pm
by Krelian99
You have to let run your PC all the time for collecting the tick data. You just need an indi and the

Code: Select all

FileWrite(handle,TimeToStr( TimeCurrent(), TIME_DATE | TIME_SECONDS ),Bid, Ask);
More elegant it is if you have independent data feed in history and there are some good sites, look here.
BTW, MT4 is very cumbersome for backtesting.