← Pushshift Reddit Search + BingX integrations

BingX Custom Calculate Leveraged Position with BingX API on New Comments By Search from Pushshift Reddit Search API

Pipedream makes it easy to connect APIs for BingX, Pushshift Reddit Search and 2,200+ other apps remarkably fast.

Trigger workflow on
New Comments By Search from the Pushshift Reddit Search API
Next, do this
BingX Custom Calculate Leveraged Position with the BingX API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 1,000,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 Pushshift Reddit Search trigger and BingX 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 Comments By Search trigger
    1. Connect your Pushshift Reddit Search account
    2. Configure Polling schedule
    3. Optional- Configure IDs
    4. Configure Q
    5. Optional- Configure Size
    6. Optional- Configure Fields
    7. Optional- Select a Sort
    8. Optional- Select a Sort Type
    9. Optional- Select a Aggs
    10. Optional- Configure Author
    11. Optional- Configure Subreddit
    12. Optional- Select a Frequency
    13. Optional- Configure Metadata
  3. Configure the BingX Custom Calculate Leveraged Position action
    1. Connect your BingX account
    2. Select a Symbol
    3. Optional- Select a Currency
    4. Select a Trade Type
    5. Optional- Configure Limit Price
    6. Configure Stop Loss Price
    7. Configure Take Profit Loss Price
    8. Configure Risk
  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 when a search of Reddit comments using the Pushshift.io API returns new results.
Version:0.0.3
Key:pushshift_reddit_search-new-comments-by-search

Pushshift Reddit Search Overview

Using Pushshift's Reddit Search API, you can build a variety of apps to explore
popular content from Reddit. Here are a few examples of what you can create
with the API:

  • Create filtered searching of Reddit content. With the Pushshift API, you can
    filter Reddit content by string matches, subreddit, user ID, and more.
  • Build a Reddit-based article summarizer. Use the API to identify trending
    topics and articles posted to Reddit and summarize them for easy reading.
  • Create subreddit recommendations. Use the API to identify posts related to a
    certain topic and make personalized recommendations of subreddits associated
    with that topic.
  • Develop a sentiment analysis tool. The API allows you to identify sentiment
    in Reddit posts, providing a useful tool for understanding people’s opinions
    on topics.
  • Create a subreddit crawler. With the API, you can crawl through subreddits to
    identify posts that meet certain criteria - Allowing you to find the latest
    news and hot topics in no time.
  • Develop an app for monitoring. Use the API to track keyword mentions and
    subreddit activity over time to see how topics and conversations are trending
    on Reddit.
  • Build an analytics dashboard. Use the API to aggregate Reddit data and build
    a dashboard to visualize trends in popular topics and conversation over time.

Trigger Code

import pushshift from "../../pushshift_reddit_search.app.mjs";
import utils from "../../common/utils.mjs";
import base from "../common/base.mjs";

export default {
  key: "pushshift_reddit_search-new-comments-by-search",
  name: "New Comments By Search",
  description: "Emit new event when a search of Reddit comments using the Pushshift.io API returns new results.",
  version: "0.0.3",
  type: "source",
  dedupe: "unique",
  props: {
    ...base.props,
    ids: {
      propDefinition: [
        pushshift,
        "ids",
      ],
    },
    q: {
      propDefinition: [
        pushshift,
        "q",
      ],
    },
    size: {
      propDefinition: [
        pushshift,
        "size",
      ],
    },
    fields: {
      propDefinition: [
        pushshift,
        "fields",
      ],
    },
    sort: {
      propDefinition: [
        pushshift,
        "sort",
      ],
    },
    sortType: {
      propDefinition: [
        pushshift,
        "sortType",
      ],
    },
    aggs: {
      propDefinition: [
        pushshift,
        "aggs",
      ],
    },
    author: {
      propDefinition: [
        pushshift,
        "author",
      ],
    },
    subreddit: {
      propDefinition: [
        pushshift,
        "subreddit",
      ],
    },
    frequency: {
      propDefinition: [
        pushshift,
        "frequency",
      ],
    },
    metadata: {
      propDefinition: [
        pushshift,
        "metadata",
      ],
    },
  },
  methods: {
    ...base.methods,
    generateMeta(comment) {
      return {
        id: comment.id,
        summary: `New Comment ID: ${comment.id}`,
        ts: comment.created_utc,
      };
    },
  },
  async run(event) {
    const params = utils.omitEmptyStringValues({
      q: this.q,
      ids: this.ids,
      size: this.size,
      fields: this.fields,
      sort: this.sort,
      sort_type: this.sortType,
      aggs: this.aggs,
      author: this.author,
      subreddit: this.subreddit,
      frequency: this.frequency,
      metadata: this.metadata,
      after: this._getAfter(),
    });

    const comments = await this.pushshift.searchComments({
      params,
    });
    for (const comment of comments) {
      const meta = this.generateMeta(comment);
      this.$emit(comment, meta);
    }

    this._setAfter(event.timestamp);
  },
};

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
Pushshift Reddit SearchpushshiftappThis component uses the Pushshift Reddit Search app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
Polling scheduletimer$.interface.timer

Pipedream will poll the Pushshift.io API on this schedule.

IDsidsstring

Get specific submissions via their ids. Enter as comma-delimited base36 ids.

Qqstring

Search term. Will search ALL possible fields

Sizesizeinteger

Number of results to return (Integer <= 500)

Fieldsfieldsstring

Only return specific fields (comma delimited)

SortsortstringSelect a value from the drop down menu:ascdesc
Sort TypesortTypestringSelect a value from the drop down menu:scorenum_commentscreated_utc
AggsaggsstringSelect a value from the drop down menu:authorlink_idcreated_utcsubreddit
Authorauthorstring

Restrict to a specific author

Subredditsubredditstring

Restrict to a specific subreddit

FrequencyfrequencystringSelect a value from the drop down menu:secondminutehourday
Metadatametadataboolean

Include metadata search information

Trigger Authentication

The Pushshift Reddit Search API does not require authentication.

The pushshift.io Reddit API was designed and created by the /r/datasets mod team to help provide enhanced functionality and search capabilities for searching Reddit comments and submissions. The project lead, /u/stuck_in_the_matrix, is the maintainer of the Reddit comment and submissions archives located at https://files.pushshift.io. This RESTful API gives full functionality for searching Reddit data and also includes the capability of creating powerful data aggregations. With this API, you can quickly find the data that you are interested in and find fascinating correlations.

Action

Description:Calculate leveraged position based on entry, stop price and account balance
Version:0.0.4
Key:bingx-custom-calculate-leveraged-position

BingX Overview

The BingX API offers a digital asset trading platform that enables users to perform crypto trades, access market data, and manage their portfolio. By leveraging this API on Pipedream, you can automate your cryptocurrency trading strategies, synchronize your trading data with other financial tools, and create real-time alerts based on market conditions.

Action Code

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

export default {
  name: "BingX Custom Calculate Leveraged Position",
  version: "0.0.4",
  key: "bingx-custom-calculate-leveraged-position",
  description: "Calculate leveraged position based on entry, stop price and account balance",
  props: {
    bingx,
    symbol: {
      propDefinition: [
        bingx,
        "symbol",
      ],
    },
    currency: {
      propDefinition: [
        bingx,
        "currency",
      ],
    },
    tradeType: {
      propDefinition: [
        bingx,
        "tradeType",
      ],
    },
    limitPrice: {
      label: "Limit Price",
      description: "Limit Price (Applicable only for limit orders)",
      type: "string",
      optional: true,
    },
    stopPrice: {
      label: "Stop Loss Price",
      description: "Stop Loss Price for trade",
      type: "string",
      optional: false,
    },
    profitPrice: {
      label: "Take Profit Loss Price",
      description: "Take Profit Price for trade",
      type: "string",
      optional: false,
    },
    riskOnCapital: {
      label: "Risk",
      description: "Risk Percentage of capital",
      type: "string",
      default: "2",
      optional: false,
    },
  },
  type: "action",
  async run({ $ }) {
    let entryPrice = this.limitPrice;
    if (!entryPrice)
      entryPrice = await this.bingx.getLatestPrice({
        params: {
          symbol: this.symbol,
        },
        $,
      });
    let tradeDirection = entryPrice > this.stopPrice
      ? "BID"
      : "ASK";
    let tpDirection = entryPrice > this.stopPrice
      ? "ASK"
      : "BID";
    const balanceQuery = await this.bingx.getBalance({
      params: {
        currency: this.currency,
      },
      $,
    });
    console.log(balanceQuery);
    if (balanceQuery.code) {
      throw new Error(balanceQuery.msg);
    }
    const balance = balanceQuery.data.balance.balance;
    const risk = this.bingx.convertToFloat(this.riskOnCapital) * balance / 100;

    const stopDiff = Math.abs(entryPrice - this.stopPrice);
    const profitDiff = Math.abs(entryPrice - this.profitPrice);

    const leverage = Math.floor(entryPrice * 0.9 / stopDiff);
    const qty = risk / stopDiff;
    const profit = qty * profitDiff;
    const returnValue = {
      "entryPrice": entryPrice,
      "stopPrice": this.stopPrice,
      "targetPrice": this.profitPrice,
      "entryDirection": tradeDirection,
      "exitDirection": tpDirection,
      "leverage": leverage,
      "quantity": qty,
      "riskAmount": risk,
      "profitAmount": profit,
      "riskReward": profit / risk,
    };
    if (returnValue.code) {
      throw new Error(returnValue.msg);
    } else {
      $.export("$summary", `Calculated bracket order for ${this.symbol}`);
    }
    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
BingXbingxappThis component uses the BingX app.
SymbolsymbolstringSelect a value from the drop down menu.
CurrencycurrencystringSelect a value from the drop down menu.
Trade TypetradeTypestringSelect a value from the drop down menu:MARKETLIMIT
Limit PricelimitPricestring

Limit Price (Applicable only for limit orders)

Stop Loss PricestopPricestring

Stop Loss Price for trade

Take Profit Loss PriceprofitPricestring

Take Profit Price for trade

RiskriskOnCapitalstring

Risk Percentage of capital

Action Authentication

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

You must create an API Key at the API Management page on BingX to connect to Pipedream.

About BingX

Connect with Elite Traders, Discover Smarter Investing

BingX Account GetPositions with BingX API on New Comments By Search from Pushshift Reddit Search API
Pushshift Reddit Search + BingX
 
Try it
BingX Account GetPositions with BingX API on New Posts By Search from Pushshift Reddit Search API
Pushshift Reddit Search + BingX
 
Try it
BingX Account GetBalance with BingX API on New Comments By Search from Pushshift Reddit Search API
Pushshift Reddit Search + BingX
 
Try it
BingX Account GetBalance with BingX API on New Posts By Search from Pushshift Reddit Search API
Pushshift Reddit Search + BingX
 
Try it
BingX Custom BracketOrder with BingX API on New Comments By Search from Pushshift Reddit Search API
Pushshift Reddit Search + BingX
 
Try it
New Comments By Search from the Pushshift Reddit Search API

Emit new event when a search of Reddit comments using the Pushshift.io API returns new results.

 
Try it
New Posts By Search from the Pushshift Reddit Search API

Emit new event when a search of Reddit posts using the Pushshift.io API returns new results.

 
Try it
Search Reddit Posts with the Pushshift Reddit Search API

Search Reddit posts using the Pushshift.io API. See the docs here

 
Try it
BingX Account Get Balance with the BingX API

Get Perpetual Swap Account Asset Information See the documentation.

 
Try it
BingX Account Get Positions with the BingX API

Perpetual Swap Positions See the documentation.

 
Try it
BingX Custom Bracket Order with the BingX API

Place bracket order. See the documentation

 
Try it
BingX Custom Calculate Leveraged Position with the BingX API

Calculate leveraged position based on entry, stop price and account balance

 
Try it

Explore Other Apps

1
-
24
of
2,200+
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
Salesforce
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
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
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.