Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
WISEPLAT
GitHub Repository: WISEPLAT/python-code
Path: blob/master/ invest-robot-contest_NeuroInvest-main/NeuroInvest/training_all.py
12266 views
1
from trade_tuples import tradesTuple
2
3
def trainingsAll(trades):
4
for trade in trades:
5
trade.training()
6
7
8
trainingsAll(tradesTuple)
9