Skip to content

Latest commit

 

History

History
86 lines (73 loc) · 3.32 KB

File metadata and controls

86 lines (73 loc) · 3.32 KB

Getting Started with pipedream

🔙 Back to cloud-versions.md

▶️ Tutorial Video

🌻 Shortcuts

⚓ Requirements

👣 Setup

  1. Login to pipedream and create a new workflow. img

  2. Select New Emails as the trigger. img

  3. Copy the email address given by pipedream and paste it into the Email-to-SMS field in your TradingView account. (You can follow this instruction to change the Email-to-SMS email address.)

  4. In order to find out the Email-to-SMS update verification code, you need to click the event dropdown menu below the given email address and select the verification email. img

  5. Find your verification code under steps.trigger -> event -> body -> text and paste it back into the Email-to-SMS field.

  6. Click the "Continue" button. img

  7. Select HTTP / Webhook. img

  8. Select Use any HTTP / Webhook API in Python. img

  9. Copy the code [Click ME] and paste it into pipedream's code editor.

    [!WARNING]
    You may have to copy and paste the code by splitting it into small parts if you can't paste the whole code at once. Please make sure all indent are correct.

  10. Input your configuration. [Click ME]

  11. Click the "Test" button. img You will receive the welcome message in your Discord if you have configured the Discord webhook URL and set the log_level to 4. img

  12. Click the "Deploy" button after you see the "Success" message. img

  13. You are good to go!

⚙️ Configuration

  1. webhook_urls - Webhook URLs you want to send the alert to. You can add multiple URLs by separating them with a comma.
# Single URL:
webhook_urls = [
    r"https://mywebhook.com/1",
]

# Multi URLs:
webhook_urls = [
    r"https://mywebhook.com/1",
    r"https://mywebhook.com/2",
    r"https://mywebhook.com/3",
    # ...
]

Note

It is a good idea to test your signal or the program using a webhook test service such as webhook.site instead of using your production webhook.

  1. discord_webhook_url - (Optional) Discord webhook URL. Mainly for logging purposes. Leave it blank if you don't want to use it.

💖 Special Thanks


Priyanshu-raj95