/// <summary>
        /// CALLED WHEN THE ROBOT FIRST STARTS, IT IS ONLY CALLED ONCE.
        /// </summary>
        protected override void OnStart()
        {
            // TRADE MANAGER DECLERATION
            //tm = new TradeManager(this);

            // INSTANTIATE THE INDICATORS
            VindIchi   = Indicators.IchimokuKinkoHyo(9, KijunSen, 52);
            VchaikinMF = Indicators.ChaikinMoneyFlow(ChaikinPeriod);
            //  CUSTOM INDICATORS
            Vosma = Indicators.GetIndicator <OSMA>(OsMAShort, OsMALong, OsMASignal);
            Vatr  = Indicators.GetIndicator <AverageTrueRange>(ATRFast, ATRSlow);
        }