with OANDA and AttractWell?
Emit new event when a contact becomes a new member of a vault.
Emit new event when a new open position is created or updated in an Oanda account. See the documentation
Emit new event when a new registration for an event takes place.
Emit new event when a new trade is opened in an Oanda account. See the documentation
Emit new event when a lead is gained from a landing page.
Retrieve historical price data for a specified currency pair or instrument within a given time range. See the documentation
Creates or updates a contact with the provided identification and contact details.
Approves, rejects, or unapproves a lesson in the AttractWell system based on the selected status.
The OANDA API enables you to tap into the world of forex trading, providing real-time currency exchange rates, and the ability to automate trading strategies, manage accounts, access market data, and more. On Pipedream, you can craft workflows that capitalize on OANDA's capabilities, such as reacting to market changes, automating trades based on custom logic, and syncing forex data with other business applications for analysis and decision-making.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
oanda: {
type: "app",
app: "oanda",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api-fxpractice.oanda.com/v3/accounts`,
headers: {
Authorization: `Bearer ${this.oanda.$auth.personal_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
attractwell: {
type: "app",
app: "attractwell",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.attractwell.com/api/v1/campaigns`,
headers: {
Authorization: `Bearer ${this.attractwell.$auth.oauth_access_token}`,
},
})
},
})