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
Уже было, собственно.
Для примера, цены закрытия на MTLR И MTLRP метод GetClosePrices() возвращает некорректные. Второй момент, не особо важный: с чем связаны различия входных параметров методов GetClosePrices() и GetLastPrices(), схожих по своей сути? Может есть смысл привести к варианту, используемому в GetClosePrices()?
var tinkoff_v2 = require('../tinkoff_v2.js');
var api = new tinkoff_v2({
'token': process.argv[2]
});
(async function main() {
let closePrices = await api.MarketData.GetClosePrices({
instruments: [{ "instrument_id": "eb4ba863-e85f-4f80-8c29-f2627938ee58" }, { "instrument_id": "c1a3c440-f51c-4a75-a400-42a2a74f5f2b" }]
});
console.log(closePrices);
let lastPrices = await api.MarketData.GetLastPrices({
instrument_id: ["eb4ba863-e85f-4f80-8c29-f2627938ee58", "c1a3c440-f51c-4a75-a400-42a2a74f5f2b"]
});
console.log(lastPrices);
})();
Если уж так тяжело решить проблему, предлагаю добавить в ответ еще одно поле - evening_session_price. Так даже интереснее получится - кому что понадобится, то и будет использовать. Не благодарите!
Уже было, собственно.
Для примера, цены закрытия на MTLR И MTLRP метод GetClosePrices() возвращает некорректные. Второй момент, не особо важный: с чем связаны различия входных параметров методов GetClosePrices() и GetLastPrices(), схожих по своей сути? Может есть смысл привести к варианту, используемому в GetClosePrices()?
Результат:
{
close_prices: [
{
figi: 'BBG004S68598',
instrument_uid: 'eb4ba863-e85f-4f80-8c29-f2627938ee58',
price: 191.2,
time: 2023-05-11T20:50:01.358Z
},
{
figi: 'BBG004S68FR6',
instrument_uid: 'c1a3c440-f51c-4a75-a400-42a2a74f5f2b',
price: 207.1,
time: 2023-05-11T20:50:01.358Z
}
]
}
{
last_prices: [
{
figi: 'BBG004S68598',
price: 184.62,
time: 2023-05-12T08:45:12.998Z,
instrument_uid: 'eb4ba863-e85f-4f80-8c29-f2627938ee58'
},
{
figi: 'BBG004S68FR6',
price: 200.3,
time: 2023-05-12T08:45:04.449Z,
instrument_uid: 'c1a3c440-f51c-4a75-a400-42a2a74f5f2b'
}
]
}
The text was updated successfully, but these errors were encountered: