Input Nodes
The starting blocks for every strategy. Define your data source and timeframe.
Fetch Data Price
This is the mandatory starting node for all strategies. It fetches historical or real-time OHLCV (Open, High, Low, Close, Volume) data for the selected symbol.
Configuration:
- Provider: The data source (e.g., Twelve Data).
- Symbol: The trading pair (e.g., EUR/USD, BTC/USD). Default:
OANDA:EUR_USD.
Outputs:
- Source: Raw OHLCV data stream. Must be connected to a Timeframe Selector.
Timeframe Selector
Resamples the raw data stream into specific candle intervals (e.g., 1 hour, 15 minutes).
Configuration:
- Interval: The duration of each candle.
Available Options:
1 min5 min15 min30 min45 min1 h2 h4 h8 h1 day1 week1 month
Inputs:
- Source: Data connection from 'Fetch Data Price'.
Outputs:
- OHLCV: The resampled candle data, ready for Indicators.