39 lines
749 B
TypeScript
39 lines
749 B
TypeScript
export const mockScreenerItems = [
|
||
{
|
||
secid: 'SBER',
|
||
shortName: 'Сбер',
|
||
isin: 'RU0009029540',
|
||
type: 'share',
|
||
price: 289.5,
|
||
change: 2.5,
|
||
changePercent: 0.87,
|
||
volume: 15000000,
|
||
listLevel: 1,
|
||
capitalization: 6250000000000,
|
||
},
|
||
{
|
||
secid: 'VTBR',
|
||
shortName: 'ВТБ',
|
||
isin: 'RU000A0JP5V6',
|
||
type: 'share',
|
||
price: 0.0234,
|
||
change: 0.0002,
|
||
changePercent: 0.86,
|
||
volume: 50000000,
|
||
listLevel: 1,
|
||
capitalization: 30000000000,
|
||
},
|
||
{
|
||
secid: 'GAZP',
|
||
shortName: 'Газпром',
|
||
isin: 'RU0007661625',
|
||
type: 'share',
|
||
price: 198.5,
|
||
change: -1.5,
|
||
changePercent: -0.75,
|
||
volume: 8000000,
|
||
listLevel: 1,
|
||
capitalization: 4700000000000,
|
||
},
|
||
]
|