core/rustybot/src/main.rs

36 lines
896 B
Rust
Raw Normal View History

2021-01-02 14:10:16 +00:00
use bitfinex::api::Bitfinex;
2021-01-04 10:45:54 +00:00
use bitfinex::ticker::TradingPairTicker;
2021-01-04 12:07:03 +00:00
use tokio::time::{Duration, delay_for};
2021-01-04 10:45:54 +00:00
use crate::bot::BfxBot;
2021-01-04 12:07:03 +00:00
use crate::currency::{Symbol, SymbolPair};
2021-01-02 14:10:16 +00:00
2021-01-02 12:15:19 +00:00
mod ticker;
mod events;
mod pairs;
2021-01-02 14:10:16 +00:00
mod positions;
mod strategy;
2021-01-02 19:01:39 +00:00
mod bot;
mod currency;
2021-01-01 14:07:16 +00:00
pub type BoxError = Box<dyn std::error::Error + Send + Sync>;
#[tokio::main]
async fn main() -> Result<(), BoxError> {
2021-01-04 10:45:54 +00:00
let test_api_key = "P1EVE68DJByDAkGQvpIkTwfrbYXd2Vo2ZaIhTYb9vx2";
let test_api_secret = "1nicg8z0zKVEt5Rb7ZDpIYjVYVTgvCaCPMZqB0niFli";
2021-01-04 12:07:03 +00:00
let mut bot = BfxBot::new(test_api_key, test_api_secret, vec![Symbol::BTC, Symbol::ETH, Symbol::XMR], Symbol::USD, Duration::new(20, 0));
2021-01-04 10:45:54 +00:00
loop {
2021-01-04 12:07:03 +00:00
let ticker = bot.current_prices("ETH".into()).await?;
2021-01-04 10:45:54 +00:00
bot.update().await;
2021-01-02 14:10:16 +00:00
2021-01-04 12:07:03 +00:00
// let ticker = bot.current_prices("ETH".into()).await?;
2021-01-04 10:45:54 +00:00
println!("{:?}", ticker);
}
2021-01-02 14:10:16 +00:00
2021-01-01 14:07:16 +00:00
Ok(())
}