Overall Statistics |
Total Trades 546 Average Win 3.03% Average Loss -3.34% Compounding Annual Return 66.989% Drawdown 20.900% Expectancy 0.188 Net Profit 354.029% Sharpe Ratio 1.306 Loss Rate 38% Win Rate 62% Profit-Loss Ratio 0.91 Alpha 0.406 Beta -0.041 Annual Standard Deviation 0.309 Annual Variance 0.095 Information Ratio 1.057 Tracking Error 0.331 Treynor Ratio -9.96 Total Fees $7556.88 |
using MathNet.Numerics; namespace QuantConnect { public class BasicTemplateAlgorithm : QCAlgorithm { public string pair1 = "GBPUSD"; RollingWindow<TradeBar> window; const int WL = 10; double entryPrice = 0; int holdHours = 0; bool Long = false; bool hasTraded = false; BollingerBands bb; public override void Initialize() { SetStartDate(2014,01,01); SetEndDate(2016, 12, 12); SetBrokerageModel(BrokerageName.FxcmBrokerage); //SetBrokerageModel(BrokerageName.OandaBrokerage); SetCash(10000); window = new RollingWindow<TradeBar>(WL); //AddForex(pair1, Resolution.Minute, Market.Oanda); AddForex(pair1, Resolution.Hour, Market.FXCM); bb = BB(pair1, WL, 2.2M, MovingAverageType.Simple, Resolution.Hour); } public void OnData(TradeBars data) { window.Add(data[pair1]); if(!window.IsReady) return; if(data[pair1].Time.Hour == 1){ hasTraded = false; } var close = (double)data[pair1].Close; // Entry if(data[pair1].Time.Hour > 4 && data[pair1].Time.Hour <= 10 && !Portfolio.Invested && !hasTraded){ if(close > bb.UpperBand){ SetHoldings(pair1, 20); holdHours = 0; Long = true; hasTraded = true; entryPrice = close; } if(close < bb.LowerBand){ SetHoldings(pair1, -20); holdHours = 0; Long = false; hasTraded = true; entryPrice = close; } } // Exit if(Portfolio.Invested){ // Take profit if(Long && close > entryPrice +0.00080) Liquidate(); if(!Long && close < entryPrice -0.00080) Liquidate(); // Stop loss if(Long && close < entryPrice - 0.00180) Liquidate(); if(!Long && close > entryPrice + 0.00180) Liquidate(); // Timed exit holdHours++; if(holdHours > 5) Liquidate(); } } } }