Page 1 of 1

Tickstory Data On Live Account?

Posted: Wed Oct 02, 2013 10:58 pm
by Trader2384
Can you use the tickstory data on live account? Do you think this would resolve the following issue?: I am trying to program an indicator to detect the highest point on the chart from the last 5 years but it is having trouble

Thank you :)

Re: Tickstory Data On Live Account?

Posted: Fri Oct 04, 2013 10:14 pm
by tickstory
Hi Trader2384,

Just remember that if you use your 'live' account it will override the data you currently have from the live market. If you do not have data for the past 5 years in your history, then yes, it should resolve the issue with getting the high point. Of course, this depends on whether there is 5-years of historical data for the symbol you are exporting.

Hope this helps.

Re: Tickstory Data On Live Account?

Posted: Sat Oct 05, 2013 5:09 pm
by Trader2384
Thanks for the response. What would be the problem with overwriting current data on the live account? Isn't the Tickstory data more accurate?

Thanks again

Re: Tickstory Data On Live Account?

Posted: Sat Oct 05, 2013 7:57 pm
by gooly
I think you have two options to get the highest price of the last 5 years.
1) Just to check: open a monthly chart of the your pair (Symbol()) and look how far back your provider offers data. If you find enough data you just have write in your indicator:

Code: Select all

 iHigh(NULL,PERIOD_MN1,iHighest(NULL,_PERIOD_MN1,..)). 
I see right now mine goes back until 2006 - enough I guess.

2.) If this fails, create a data-file of what even candle you like (monthly perhaps) and then use the FileOpen() .. to rtead and check or you have to use the Windows.dll to read files out of the file-folder of the mt4.
Gooly

Re: Tickstory Data On Live Account?

Posted: Sun Oct 06, 2013 12:03 pm
by tickstory
Trader2384 wrote:Thanks for the response. What would be the problem with overwriting current data on the live account? Isn't the Tickstory data more accurate?

Thanks again
Hi Trader2384,

There are a few reasons why people may want their live historical data - most notably, some people collect the broker data so they can be guaranteed that their tests will more accurately reflect their trading with that broker.
Of course, if you have no such requirement then the caveat does not apply to you.

Hope this helps.

Re: Tickstory Data On Live Account?

Posted: Sun Oct 06, 2013 12:08 pm
by Trader2384
yes, that makes sense - thank you.

Re: Tickstory Data On Live Account?

Posted: Sun Oct 06, 2013 12:41 pm
by Trader2384
Hi, on second thought, the idea of collecting broker data to ensure more accurate tests doesn't make sense to me. I thought broker historical data is filled in retroactively and do not reflect the real-time data from that broker. Isn't that why people looking for the most accurate data from their broker use Tickstory? Maybe I'm missing something here.

Re: Tickstory Data On Live Account?

Posted: Mon Oct 07, 2013 10:16 am
by tickstory
Hi Trader2384,

If you are collecting data 'live' as it occurs, then this is the most 'faithful' representation of what data your broker gives you. Of course, if you are back-filling data, then yes, it is possible that your broker can filter out any "anomalies" - or more importantly, if you are back-filling, you are at-best getting 1-minute data rather than tick-data.

Generally speaking, unless you are constantly keeping your MT4 running and collecting tick-data, you are much better off with the Dukascopy tick data to get an indicative idea of how your EA is performing.

Hope this helps.

Re: Tickstory Data On Live Account?

Posted: Mon Oct 07, 2013 3:24 pm
by Trader2384
thanks for the clarification :)