Created
November 6, 2020 19:57
-
-
Save jayhuang75/ebe5c73d90d7bc8706a743b930fd9adc to your computer and use it in GitHub Desktop.
tradingbot.mod.rs
This file contains 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
pub struct TradingBot { | |
pub trading_config: TradingConfig, | |
pub market: Box<dyn Market>, | |
} |
It depends on how you want to implement your integration with what configuration you need for your design. I hope this can help.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
where are the
TradingConfig
andMarket
scripts?