-
-
Notifications
You must be signed in to change notification settings - Fork 578
Closed
Labels
deprecatedRelates to an old unsupported versionRelates to an old unsupported versionquestionFurther information is requestedFurther information is requested
Description
Here my code
const marketAPI = require('../main');
const market = marketAPI(false);
function fullreport() {
market.initChart({
symbol: 'BINANCE:ARPAUSDT',
period: '1',
range:100,
indicators: [
{
id: 'PUB;9p7YCNNfzwkzhh9BTvDTJXqvV1vA0e7b',
version: '2',
name: 'VSH',
author: { id: 109029, username: 'D7R' },
image: 'B7NGM3MB',
access: 'closed_source',
// source: '',
settings:[8,10,3,3,80,20,99,1,true,true,true],
type: 'study'
},
],
}, (study) => {
if (!study[0].VSH) return;
console.log(study[0].VSH)
});
}
market.on('logged', () => {
fullreport()
});
My result; :\
{
K: 91.12527987314728,
_plot_1: 1,
D: 92.05727227756101,
RSI_Overbought_: 80,
Extended_RSI_Oversold: 1,
RSI_Oversold: 20,
Baseline: 50,
K__cross_OVER_D: 1e+100,
K_cross_UNDER_D: 91.12527987314728,
Highlight_when_RSI_is_Overbought: 2,
Highlight_when_RSI_is_Oversold: 1e+100,
Highlight_when_RSI_is_Extended_Overbought: 1e+100,
Highlight_when_RSI_is_Extended_Oversold: 1e+100
}
I want the 'K' and 'D' result in the indicator to be the same as my result
I tried diffrent time zone but not workin...
Can u help me
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
deprecatedRelates to an old unsupported versionRelates to an old unsupported versionquestionFurther information is requestedFurther information is requested


