We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The returned columns from function parse(...) in module tasks/do-historical-data.gs are in the wrong order
If the headers are const header = ["Open Time", "Open", "High", "Low", "Close", "Close Time", "Volume", "Trades"];
Then the items in the row should change from new Date(parseInt(d[5])), parseFloat(d[6]), to new Date(parseInt(d[6])), parseFloat(d[5]),
or change the order of the headers....
The text was updated successfully, but these errors were encountered:
[#34] Fixing wrong column order for "history" operation.
9565db7
Hey @JaviZurdo thanks for the report!
You'r right and the fix was pushed to master branch, it'll be available in the next release. Thanks again, cheers! 🍻
master
Sorry, something went wrong.
diegomanuel
No branches or pull requests
The returned columns from function parse(...) in module tasks/do-historical-data.gs are in the wrong order
If the headers are
const header = ["Open Time", "Open", "High", "Low", "Close", "Close Time", "Volume", "Trades"];
Then the items in the row should change from
new Date(parseInt(d[5])),
parseFloat(d[6]),
to
new Date(parseInt(d[6])),
parseFloat(d[5]),
or change the order of the headers....
The text was updated successfully, but these errors were encountered: