Overall Statistics |
Total Trades 1 Average Win 0% Average Loss 0% Compounding Annual Return 264.628% Drawdown 2.200% Expectancy 0 Net Profit 0% Sharpe Ratio 4.411 Loss Rate 0% Win Rate 0% Profit-Loss Ratio 0 Alpha 0.002 Beta 0.999 Annual Standard Deviation 0.193 Annual Variance 0.037 Information Ratio 3.026 Tracking Error 0 Treynor Ratio 0.851 Total Fees $3.19 |
namespace QuantConnect { /// <summary> /// QCU Scheduled Events Algorithm /// </summary> public class ScheduledEventsAlgorithm : QCAlgorithm { bool _ibMantenienceFlag = false; /// <summary> /// Initialise the data and resolution required, as well as the cash and start-end dates for your algorithm. All algorithms must initialized. /// </summary> public override void Initialize() { SetStartDate(2013, 10, 07); //Set Start Date SetEndDate(2013, 10, 11); //Set End Date SetCash(100000); //Set Strategy Cash // Find more symbols here: http://quantconnect.com/data AddSecurity(SecurityType.Equity, "SPY", Resolution.Minute); // schedule an event to fire at a specific date/time Schedule.On(DateRules.EveryDay(), TimeRules.At(23, 45), () => { Log("IB mantenience Start : " + Time); _ibMantenienceFlag = true; }); Schedule.On(DateRules.EveryDay(), TimeRules.At(0, 15), () => { Log("IB mantenience Ended : " + Time); _ibMantenienceFlag = false; }); } /// <summary> /// OnData event is the primary entry point for your algorithm. Each new data point will be pumped in here. /// </summary> /// <param name="data">Slice object keyed by symbol containing the stock data</param> public override void OnData(Slice data) { if(_ibMantenienceFlag) return; if (!Portfolio.Invested) { SetHoldings("SPY", 1); } } } }