Can I Use My Python Script to Place Futures Trades on Kucoin and Are There Detailed Instructions Available?

This topic was automatically generated from Slack. You can find the original thread here.

can i use my python script, that generates buy/sell signals to place futures trades on Kucoin, and if so are there clear instructions on how this is done

You can use any Python code and PyPi imports, you’ll just need to keep in the expected structure when you create a new step:

import any_package

def handler(pd: "pipedream"):
    # Reference data from previous steps
    print(pd.steps["trigger"]["context"]["id"])
    # Return data for use in future steps
    return {"foo": {"test": True}}