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
Is your feature request related to a problem? Please describe.
I need to authentify the 2018 ATH of somes cryptos to see which one of them have still potential of big pump.
Describe the solution you'd like
A function to get ATH of a crypto available on binance
Thanks for your work ;)
The text was updated successfully, but these errors were encountered:
if binance does not have a function for the all time high, you can get the max of a range of running history bars.
for example you record the history high from the last 24 hours (initial you could get a few years of monthly history bars to get the ATH manual)
from this range you can get the max value. this max value can go up and down.
with a function to record the max , for example:
function recordMax() {
var sheet = SpreadsheetApp.getActiveSheet();
var range = sheet.getRange("A1:B1");
var values = range.getValues()[0];
range.setValues([[values[0], Math.max(values[0], values[1])]]);
}
this function is quite static, and the range a1:b1 should be flexible.
with this function you get in B1 the ATH, being A1 the max from your running history range
the function only places A1 in B1 if A1>B1
the script which call that function could run on an onedit trigger of cell change
simpler would be:
With the current relevant value in A1, A2 will retain the all-time highest value of A1 with this formula:
=max(A1,A2)
provided File > Spreadsheet settings..., Calculation has Iterative calculation set to On with Max. number of iterations set to 1
but that breaks other =binance functions , so not a viable option.
Is your feature request related to a problem? Please describe.
I need to authentify the 2018 ATH of somes cryptos to see which one of them have still potential of big pump.
Describe the solution you'd like
A function to get ATH of a crypto available on binance
Thanks for your work ;)
The text was updated successfully, but these errors were encountered: