Hello,  i make Stochastic to my strategy and take all dates from Binance dates like:  

sto_fast = new Stochastic("STO_" + symbol, 15, 4, 12);
thant make Collision in 15min timeframe:   var consolidator = new TradeBarConsolidator(TimeSpan.FromMinutes(15));

public void OnConsolidorData(object s, TradeBar bar)
DEBUG(sto_fast.StochK); -  he show me different VALUE from Binance or tradingview. - how i can get similar VALUE as in tradingview???

Thank you