Ejemplo n.º 1
0
 public Bot(CoinFlip.Settings.BotData bot_data, Model model)
     : base(bot_data, model)
 {
     // Load the bot settings
     Settings  = new SettingsData(SettingsFilepath);
     m_monitor = Settings.PendingOrders.Register(model);
 }
Ejemplo n.º 2
0
        // Notes:
        //  - This is an arbitrage bot designed to take advantage of noticable price differences
        //    in the BTC/USDT and BTC/USDC pairs

        public Bot(CoinFlip.Settings.BotData bot_data, Model model)
            : base(bot_data, model)
        {
            // Load the bot settings
            Settings = new SettingsData(SettingsFilepath);

            Model.PairsChanging += HandlePairsChanging;
        }