Python
Strategy
Data Sources
Validate Cybotrade API

Validate Cybotrade API

Generate a new API Key from Cybotrade Datasource

Generate a new API key from Cybotrade Datasource (opens in a new tab) Example of generating a new API Key

Copy the API Key and add into RuntimeConfig

Copy the API Key and API Secret from the dashboard (opens in a new tab) Example of an API Key and Secret Then, you will have to paste it under RuntimeConfig's api_key, api_secret field.

An example of using this parameter is shown below.

permutation = Permutation(RuntimeConfig(
            ...
            api_key="VuzuMPVco3xDtkDcfG6QBFTJ06FzJpJFQrr2glSsBlVsVSHC",
            api_secret="6Ungl2AHnxoPLi5PfQgMojl3CyxXcRb1H7HZGbzNTnYwid9etF9nw2WNRTukbcUor2HvQyLc",
            ...
        ))
 
hyper_parameters = {}
async def start():
    await permutation.run(hyper_parameters, Strategy)
 
asyncio.run(start())