Add indicators to backtest and bot (#14)

* Add indicators to backtest and bot

* Remove
This commit is contained in:
Oda
2025-02-28 00:53:25 +07:00
committed by GitHub
parent e0a8347953
commit c715da8a17
30 changed files with 787 additions and 109 deletions

View File

@@ -275,7 +275,7 @@ public class EvmManagerTests
var manager = new EvmManager(Subgraphs);
var account = PrivateKeys.GetAccount();
var allowance = await manager.GetAllowance(account.Key, Ticker.BTC);
var allowance = await manager.GetAllowance(account.Key, Ticker.USDC);
Assert.IsType<decimal>(allowance);
}