Waw,Quote from DT-waw:
...you want to work with large amount of high frequency data try amibroker.
Sure!Quote from cashonly:
Sure, when I want to start up, I need to get data tick data on stocks for backtesting and need a way to get that. Is there another way than from a datafeed provider?
Cash

Quote from MrJohnGalt:
"Well, it would take me to re-program the whole platform to make it compatible to intraday trading. I'm just trying to work around the program to keep people happy." - glitch
Quote from Volker Knapp:
So WLD3 is able to use intra day data and can be used for intra day trading. Of course I will be answering further questions here if needed.
Quote from cashonly:
OK,
I'm confused... I have one guy saying that it can't be used for backtesting on intraday tick data and another saying that it can... which is it?
For example, In backtesting, If a trade occurs on tick that crosses a specified price, can some action occur at that moment or does it have to wait for a bar to complete?
Hmmmm,Quote from Volker Knapp:
Again, it depends on what triggered the signal. Lets say you wish to buy at the highest high of the lat bar, then this order will be executed as soon as this price has been triggered. You DONT have to wait until the end of this bar.
If you use an indicator that is using the CLOSE of the bar then you have to wait for the close of the bar. WLD3 does not recognize every tick that finally will transform into the complete bar as the "close" of the bar. Excample, you have a RSI system that is using five minute bars. The rule tells you to buy if the RSI(20) is below 40. I will now show a run down on the price pluse the RSI indicator during that 5 minute period:
Price - RSI
110 - 45
111 - 46
109 - 43
107 - 41
105 - 39
107 - 41
109 - 43
Lets assume that this 5 minute bar had 7 ticks. The final 5 minute bar would look like this:
Open - 110
High - 111
Low - 105
Close - 109
At the closing price the RSI was at 43. So we would have not bought the stock/future even thou during the transformation of the five minute bar the RSI was for one tick below 40.
Usually people test with the closing/opening price. So why would /should you get in at some inter-bar action. From my research done years ago it seemed to give me more and false signal.
Hope this explains the behaviour of WLD3.