← WOXO + ByBit integrations

ByBit Linear Stop Order Create with ByBit API on New Video from WOXO API

Pipedream makes it easy to connect APIs for ByBit, WOXO and 2,000+ other apps remarkably fast.

Trigger workflow on
New Video from the WOXO API
Next, do this
ByBit Linear Stop Order Create with the ByBit API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 800,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a WOXO trigger and ByBit action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Video trigger
    1. Connect your WOXO account
    2. Configure timer
    3. Configure Project ID
  3. Configure the ByBit Linear Stop Order Create action
    1. Connect your ByBit account
    2. Select a Symbol
    3. Select a Side
    4. Select a Order Type
    5. Configure Quantity
    6. Optional- Configure Price
    7. Configure base_price
    8. Configure Trigger price
    9. Select a Time In Force
    10. Select a Trigger Price Type
    11. Configure Reduce Only
    12. Configure Close On Trigger
    13. Optional- Configure Order Link
    14. Optional- Configure Take Profit
    15. Optional- Configure Stop Loss
    16. Optional- Select a Take Profit Trigger By
    17. Optional- Select a Stop Loss Trigger By
    18. Optional- Select a Position Index
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event on each new video.
Version:0.0.2
Key:woxo-new-video

WOXO Overview

The WOXO API enables automation of social media content creation and management, transforming spreadsheets into social media posts, widgets, and more. With this API, you can dynamically generate marketing content, schedule posts, and update widgets in real-time, all based on data you control in a spreadsheet. This marries data-driven decision-making with social media management, offering a highly efficient way to engage with your audience.

Trigger Code

import woxo from "../../woxo.app.mjs";
import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";

export default {
  name: "New Video",
  version: "0.0.2",
  key: "woxo-new-video",
  description: "Emit new event on each new video.",
  type: "source",
  dedupe: "unique",
  props: {
    woxo,
    timer: {
      type: "$.interface.timer",
      static: {
        intervalSeconds: DEFAULT_POLLING_SOURCE_TIMER_INTERVAL,
      },
    },
    projectId: {
      label: "Project ID",
      description: "The ID of project. You can get this ID from the url. E.g. With URL `woxo.tech/video/editor?slug=F0AOtl8sdg` the ID will be `F0AOtl8sdg`",
      type: "string",
    },
  },
  methods: {
    emitEvent(data) {
      this.$emit(data, {
        id: data.id,
        summary: `New video ${data["Title 1"]}`,
        ts: new Date(),
      });
    },
  },
  hooks: {
    async deploy() {
      const videos = await this.woxo.getVideos({
        projectId: this.projectId,
      });

      videos.reverse().forEach(this.emitEvent);
    },
  },
  async run() {
    const videos = await this.woxo.getVideos({
      projectId: this.projectId,
    });

    videos.reverse().forEach(this.emitEvent);
  },
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
WOXOwoxoappThis component uses the WOXO app.
timer$.interface.timer
Project IDprojectIdstring

The ID of project. You can get this ID from the url. E.g. With URL woxo.tech/video/editor?slug=F0AOtl8sdg the ID will be F0AOtl8sdg

Trigger Authentication

WOXO uses API keys for authentication. When you connect your WOXO account, Pipedream securely stores the keys so you can easily authenticate to WOXO APIs in both code and no-code steps.

To retrieve your API key and team,

  • Navigate to your WOXO account and sign in
  • Go to “My Account” > “API Key”

About WOXO

WOXO lets your team collaborate to edit and create videos simultaneously in the spreadsheet, transforming them into instant dynamic videos at scale in minutes.

Action

Description:Place Conditional Order. [reference](https://bybit-exchange.github.io/docs/futuresV2/linear/#t-placecond)
Version:0.0.1
Key:bybit-linear-stop-order-create

ByBit Overview

The ByBit API offers programmatic access to ByBit's crypto trading platform, enabling you to automate trades, manage accounts, and retrieve market data. With Pipedream, you can harness this API to create custom workflows that react to market changes, automate trading strategies, or synchronize your ByBit data with other services for analysis or record-keeping.

Action Code

import bybit from "../../bybit.app.mjs";

export default {
  name: "ByBit Linear Stop Order Create",
  version: "0.0.1",
  key: "bybit-linear-stop-order-create",
  description: "Place Conditional Order." +
      " [reference](https://bybit-exchange.github.io/docs/futuresV2/linear/#t-placecond)",
  props: {
    bybit,
    symbol: {
      propDefinition: [
        bybit,
        "symbol",
      ],
    },
    side: {
      propDefinition: [
        bybit,
        "side",
      ],
    },
    order_type: {
      propDefinition: [
        bybit,
        "order_type",
      ],
    },
    qty: {
      propDefinition: [
        bybit,
        "qty",
      ],
    },
    price: {
      propDefinition: [
        bybit,
        "price",
      ],
    },
    base_price: {
      propDefinition: [
        bybit,
        "base_price",
      ],
    },
    stop_px: {
      propDefinition: [
        bybit,
        "stop_px",
      ],
    },
    time_in_force: {
      propDefinition: [
        bybit,
        "time_in_force",
      ],
    },
    trigger_by: {
      propDefinition: [
        bybit,
        "trigger_by",
      ],
    },
    reduce_only: {
      propDefinition: [
        bybit,
        "reduce_only",
      ],
    },
    close_on_trigger: {
      propDefinition: [
        bybit,
        "close_on_trigger",
      ],
    },
    order_link_id: {
      propDefinition: [
        bybit,
        "order_link_id",
      ],
    },
    take_profit: {
      propDefinition: [
        bybit,
        "take_profit",
      ],
    },
    stop_loss: {
      propDefinition: [
        bybit,
        "stop_loss",
      ],
    },
    tp_trigger_by: {
      propDefinition: [
        bybit,
        "tp_trigger_by",
      ],
    },
    sl_trigger_by: {
      propDefinition: [
        bybit,
        "sl_trigger_by",
      ],
    },
    position_idx: {
      propDefinition: [
        bybit,
        "position_idx",
      ],
    },
  },
  type: "action",
  async run({ $ }) {
    const API_METHOD = "POST";
    const API_PATH = "/private/linear/stop-order/create";
    const returnValue = await this.bybit.makeRequest(API_METHOD, API_PATH, this);
    if (returnValue.ret_code) {
      throw new Error(returnValue.ret_msg);
    } else {
      $.export("$summary", "Conditional Order Placed Successfully");
    }
    return returnValue;
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
ByBitbybitappThis component uses the ByBit app.
SymbolsymbolstringSelect a value from the drop down menu.
SidesidestringSelect a value from the drop down menu:BuySell
Order Typeorder_typestringSelect a value from the drop down menu:LimitMarket
Quantityqtystring

Order quantity in cryptocurrency

Pricepricestring

Order price. Required if you make limit price order

base_pricebase_pricestring

It will be used to compare with the value of stop_px, to decide whether your conditional order will be triggered by crossing trigger price from upper side or lower side. Mainly used to identify the expected direction of the current conditional order.

Trigger pricestop_pxstring

If you're expecting the price to rise to trigger your conditional order, make sure stop_px > max(market price, base_price) else, stop_px < min(market price, base_price)

Time In Forcetime_in_forcestringSelect a value from the drop down menu:GoodTillCancelImmediateOrCancelFillOrKillPostOnly
Trigger Price Typetrigger_bystringSelect a value from the drop down menu:LastPriceIndexPriceMarkPrice
Reduce Onlyreduce_onlyboolean

True means your position can only reduce in size if this order is triggered. When reduce_only is true, take profit/stop loss cannot be set

Close On Triggerclose_on_triggerboolean

For a closing order. It can only reduce your position, not increase it. If the account has insufficient available balance when the closing order is triggered, then other active orders of similar contracts will be cancelled or reduced. It can be used to ensure your stop loss reduces your position regardless of current available margin.

Order Linkorder_link_idstring

Unique user-set order ID. Maximum length of 36 characters

Take Profittake_profitstring

Take profit price, only take effect upon opening the position

Stop Lossstop_lossstring

Stop loss price, only take effect upon opening the position

Take Profit Trigger Bytp_trigger_bystringSelect a value from the drop down menu:LastPriceIndexPriceMarkPrice
Stop Loss Trigger Bysl_trigger_bystringSelect a value from the drop down menu:LastPriceIndexPriceMarkPrice
Position Indexposition_idxintegerSelect a value from the drop down menu.

Action Authentication

ByBit uses API keys for authentication. When you connect your ByBit account, Pipedream securely stores the keys so you can easily authenticate to ByBit APIs in both code and no-code steps.

About ByBit

Connect with Bybit crypto exchange

More Ways to Connect ByBit + WOXO

ByBit Generic Market Symbols with ByBit API on New Video from WOXO API
WOXO + ByBit
 
Try it
ByBit Generic Market Open Interest with ByBit API on New Video from WOXO API
WOXO + ByBit
 
Try it
ByBit Generic Market Order Book with ByBit API on New Video from WOXO API
WOXO + ByBit
 
Try it
ByBit Linear Market Previous Funding Rate with ByBit API on New Video from WOXO API
WOXO + ByBit
 
Try it
ByBit Generic Market Account Ratio with ByBit API on New Video from WOXO API
WOXO + ByBit
 
Try it
New Video from the WOXO API

Emit new event on each new video.

 
Try it
ByBit Generic API Call with the ByBit API

Make any API call as per the documentation.reference

 
Try it
ByBit Generic Market Account Ratio with the ByBit API

Gets the Bybit user accounts' long-short ratio.reference

 
Try it
ByBit Generic Market Big Deal with the ByBit API

Obtain filled orders worth more than 500,000 USD within the last 24h. reference

 
Try it
ByBit Generic Market Open Interest with the ByBit API

Gets the total amount of unsettled contracts. In other words, the total number of contracts held in open positions.reference

 
Try it
ByBit Generic Market Order Book with the ByBit API

Get Order Book.reference

 
Try it

Explore Other Apps

1
-
24
of
2,000+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Premium
Salesforce (REST API)
Salesforce (REST API)
Web services API for interacting with Salesforce
Premium
HubSpot
HubSpot
HubSpot's CRM platform contains the marketing, sales, service, operations, and website-building software you need to grow your business.
Premium
Zoho CRM
Zoho CRM
Zoho CRM is an online Sales CRM software that manages your sales, marketing, and support in one CRM platform.
Premium
Stripe
Stripe
Stripe powers online and in-person payment processing and financial solutions for businesses of all sizes.
Shopify Developer App
Shopify Developer App
Shopify is a user-friendly e-commerce platform that helps small businesses build an online store and sell online through one streamlined dashboard.
Premium
WooCommerce
WooCommerce
WooCommerce is the open-source ecommerce platform for WordPress.
Premium
Snowflake
Snowflake
A data warehouse built for the cloud
Premium
MongoDB
MongoDB
MongoDB is an open source NoSQL database management program.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
Premium
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Premium
Twilio SendGrid
Twilio SendGrid
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Premium
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Premium
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
Premium
ServiceNow
ServiceNow
The smarter way to workflow
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.