Skip to content

Tag: openai-gym

How to define an array of action spaces?

I am trying to create a crypto trading bot that can trade multiple crypto coins simulatenously. So for example if I have n=4 coins (e.g. : 0-BTC, 1-ETH, 2-DOT, 3-SOL), then an example of action space would be something like: Where: BUY if action > 0 HOLD if action == 0 Sell if action < 0 So, in the give…