You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What are the lowest resolutions (timeframe) for historical data? e.g. month, 3 months, year?
e.g.
const chart = new client.Session.Chart();
chart.setMarket('BINANCE:BTCEUR', {
timeframe: '240', // 240 minutes (4h)
range: 100, // Can be positive to get before or negative to get after
to: 1600000000, // GMT: Sunday, September 13, 2020 12:26:40 PM
});
chart.onUpdate(() => {
if (!chart.periods[0]) return;
console.log('Periods:', chart.periods);
client.end();
});
it works on 2022-10-19.
but if i change -> timeframe: '60', it no longer returns the results.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
What are the lowest resolutions (timeframe) for historical data? e.g. month, 3 months, year?
e.g.
it works on 2022-10-19.
but if i change ->
timeframe: '60',
it no longer returns the results.Is there a way to get historical data with a lower timeframe, e.g. timeframe: '1' ?
maybe Strategy Tester/Deep Backtesting - (https://www.tradingview.com/support/solutions/43000480679-i-can-t-see-all-historical-data-on-resolutions-lower-than-1-day/) ?
Beta Was this translation helpful? Give feedback.
All reactions