This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from ibapi.client import EClient | |
| from ibapi.wrapper import EWrapper | |
| from ibapi.common import * | |
| from ibapi.contract import * | |
| class TestApp(EClient, EWrapper): | |
| def __init__(self): | |
| EClient.__init__(self, self) | |
| def error(self, reqId:TickerId, errorCode:int, errorString:str): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ############################################################ | |
| ## Using Genetic Algorithms in Quantitative Trading | |
| ## | |
| ## thertrader@gmail.com - Mar 2014 | |
| ############################################################ | |
| library(PerformanceAnalytics) | |
| library(rgenoud) | |
| library(quantmod) | |
| library(TTR) |