This commit is contained in:
Ichinga Samuel
2026-02-28 18:16:28 +01:00
parent 98e1ec34ac
commit d47a853f94
9 changed files with 1684 additions and 15 deletions
+16
View File
@@ -0,0 +1,16 @@
import asyncio
from aiomql import Bot, ForexSymbol
from .strategies.ribbon_scalper import RibbonScalper
async def rs_bot():
bot = Bot()
syms = ["ETHUSD", "BTCUSD", "ADAUSD", "SOLUSD", "LTCUSD", "XRPUSD"]
strategies = [RibbonScalper(symbol=ForexSymbol(name=sym)) for sym in syms]
bot.add_strategies(strategies=strategies)
await bot.start()
if __name__ == "__main__":
asyncio.run(rs_bot())