Search found 4898 matches

by tickstory
Tue Dec 03, 2013 3:33 am
Forum: Issue/Bug tracking
Topic: Tester: wrong bars count 0
Replies: 9
Views: 23656

Re: Tester: wrong bars count 0

Hi Magi, Thanks for the further details. Could you please check your FXT size and ensure it is under 4gb. There is a limitation with MT4 that is can't process FXT files larger than a certain size - see here for more information: http://www.tickstory.com/forum/viewtopic.php?f=4&t=202. I would recomme...
by tickstory
Tue Dec 03, 2013 3:18 am
Forum: Issue/Bug tracking
Topic: Spread doesnt get drawn
Replies: 10
Views: 24201

Re: Spread doesnt get drawn

Hi OneAndOnly - use the following code which will display the spread for you (i.e. the actual difference between the Bid and Ask price in the back-tester):

Print("Bid: " + DoubleToStr(Bid, 5) + " Ask: " + DoubleToStr(Ask, 5) + " Calc spread: " + DoubleToStr(Ask-Bid, 5) );

Regards.
by tickstory
Wed Nov 27, 2013 5:16 am
Forum: Issue/Bug tracking
Topic: Spread doesnt get drawn
Replies: 10
Views: 24201

Re: Spread doesnt get drawn

Hi OneAndOnly, This sort of makes sense from a pure back-testing perspective as the back-tester appears to be evaluating that you have reached your TP because the Ask price is beyond this point on the next tick. Generally speaking, you aren't really performing a reasonable test to have a SL/TP that ...
by tickstory
Mon Nov 25, 2013 9:33 am
Forum: Issue/Bug tracking
Topic: Tester: wrong bars count 0
Replies: 9
Views: 23656

Re: Tester: wrong bars count 0

Hi Magi, If your symbol in MT4 reads exactly 'EURUSD' then you should not need to do anything. If it had read "EURUSDm" or something similar, you would need to specify this in the "Maps To" field. If you are still having problems, the next step is to ensure that you can see the data for your exporte...
by tickstory
Mon Nov 25, 2013 9:28 am
Forum: New features & suggestions
Topic: Shortcut for MT4 Launch
Replies: 1
Views: 8573

Re: Shortcut for MT4 Launch

Hi Tickroll,

Thanks for the suggestion. There have been requests to make a command-line version of the launcher which should hopefully provide similar functionality.

Regards.
by tickstory
Mon Nov 25, 2013 9:24 am
Forum: Issue/Bug tracking
Topic: Spread doesnt get drawn
Replies: 10
Views: 24201

Re: Spread doesnt get drawn

Hi Oneandonly,

No, this doesn't make sense. I would be analysing a specific trade and printing out all the relevant values (spread, bid/ask price, etc) to make sure everything is as you expect.

Regards.
by tickstory
Sat Nov 23, 2013 5:39 am
Forum: Issue/Bug tracking
Topic: Suspicious "BidPrice, AskPrice, BidVolume, AskVolume" Output
Replies: 3
Views: 10501

Re: Suspicious "BidPrice, AskPrice, BidVolume, AskVolume" Ou

Hi Evveric - The OHLC currently always takes the bid price to construct the bar data. We will make this configurable in the future so you can choose either.

Regards.
by tickstory
Fri Nov 22, 2013 8:26 am
Forum: Issue/Bug tracking
Topic: Spread doesnt get drawn
Replies: 10
Views: 24201

Re: Spread doesnt get drawn

Hi Oneandonly, In order to simplify the example, assume that you are trading EURUSD and the bid price is 1.3510. If your spread is 2 pips, your ask price is going to be 1.3530. This means that if you put on a buy market order, you are executed at the ask price. If you are entering a sell order, the ...
by tickstory
Fri Nov 22, 2013 8:21 am
Forum: Issue/Bug tracking
Topic: Suspicious "BidPrice, AskPrice, BidVolume, AskVolume" Output
Replies: 3
Views: 10501

Re: Suspicious "BidPrice, AskPrice, BidVolume, AskVolume" Ou

Hi Evveric, Thanks for your post. In answer to your questions: 1) I can see from your export that you are exporting 1-minute data yet you are trying to print out values for tick data. This doesn't work - if you select a bar format, you can only use field pertaining to the bar - Open, High, Low, Clos...
by tickstory
Fri Nov 22, 2013 8:13 am
Forum: Issue/Bug tracking
Topic: Tester: wrong bars count 0
Replies: 9
Views: 23656

Re: Tester: wrong bars count 0

Hi Magi,

Doesn't sound like the files you exported are being used correctly. Ensure you have exported the correct symbol name as it appears in your MT4 terminal.

If this doesn't work you will need to give some more details of what you are doing so we can help.

Thanks.