Hi, I'm a newby in EFS and I want to develope auto-trading algorithms.
According to the walkthroughs and tutorials, I can test my algorithms with backtesting using Strategy object. However, for the real-life trading actions I should use completely different set of functions (buy, sell etc). So once I wrote and tested algorithm with Strategy, I should completely overwrite it with real-life functions (please correct me if I'm wrong).
I came from software development and I see two major problems:
1. I need to do the same work twice
2. I can't test real-life algorithms. Of cause, I can assume that it is logically the same as one I tested with Strategy, but there is always a possibility for "lost in translation" mistake, that will cost me a real money in a real time trade.
Is there any best practices how i can avoid those problems?
Any help will be greatly appriciated.
Best regards,
Michael
According to the walkthroughs and tutorials, I can test my algorithms with backtesting using Strategy object. However, for the real-life trading actions I should use completely different set of functions (buy, sell etc). So once I wrote and tested algorithm with Strategy, I should completely overwrite it with real-life functions (please correct me if I'm wrong).
I came from software development and I see two major problems:
1. I need to do the same work twice
2. I can't test real-life algorithms. Of cause, I can assume that it is logically the same as one I tested with Strategy, but there is always a possibility for "lost in translation" mistake, that will cost me a real money in a real time trade.
Is there any best practices how i can avoid those problems?
Any help will be greatly appriciated.
Best regards,
Michael
Comment