Is there a component I can use to create a stock trading/backtesting application in .NET? I am looking for something similar to TradeScript from ModulusFE: http://www.modulusfe.com/tradescript/
相关问题
- mv wrapped inside an if in shell scripting
- Why do I use double quotes in shell scripts [dupli
- Piping Batch File output to a Python script
- bash — setting multiple variables in a single pipe
- Powershell script to run another powershell script
相关文章
- Is there a non-java, cross platform way to launch
- Capture output of a bash command, parse it and sto
- lldb python handle breakpoint hit
- Rapidly learn InDesign scripting?
- Automatically pressing a “submit” button using pyt
- Get result from shell script objective-c
- How to send javascript object from one page to ano
- Converting hexadecimal to decimal using awk or sed
It's not as easy as the guy above tries to make it sound. You're best to use TradeScript, MQL4, EasyLanguage or even MatLab - there are some back testing add-ons for MatLab. You do NOT want to roll your own. There's a lot more to it than meets the eye.
I don't know if I understand you correctly... but you should be able to write a pretty simple back-testing app pretty quickly. You can even do it in Excel...
In any way, there are a couple of things that you need:
You buy or sell given each trading signal and at the end you just tally up the profit. It's just a handful of functions: iterate through the data set, make predictions, for each prediction buy or sell, keep track of P&L.