41 lines
935 B
TypeScript
41 lines
935 B
TypeScript
export const mockBond = {
|
|
secid: 'SU26238RMFS5',
|
|
isin: 'RU000A101XU7',
|
|
name: 'ОФЗ 26238',
|
|
shortName: 'ОФЗ 26238',
|
|
latName: null,
|
|
listLevel: 1,
|
|
issueSize: 500000000,
|
|
faceValue: 1000,
|
|
faceUnit: 'RUB',
|
|
matDate: '2027-05-15',
|
|
couponValue: 36.9,
|
|
couponPercent: 7.5,
|
|
couponPeriod: 182,
|
|
nextCoupon: '2024-07-15',
|
|
accruedInt: 8.45,
|
|
bondType: 'ОФЗ',
|
|
bondSubType: 'ОФЗ-ПД',
|
|
offerDate: null,
|
|
buybackDate: null,
|
|
marketData: {
|
|
price: 98.5,
|
|
yieldToMaturity: 8.2,
|
|
duration: 3.5,
|
|
accruedInt: 8.45,
|
|
couponValue: 36.9,
|
|
couponPercent: 7.5,
|
|
nextCouponDate: '2024-07-15',
|
|
open: 98.0,
|
|
high: 99.0,
|
|
low: 97.5,
|
|
volume: 1000000,
|
|
updatedAt: '2024-01-15T10:00:00Z',
|
|
},
|
|
}
|
|
|
|
export const mockBondHistory = [
|
|
{ date: '2024-01-15', closePrice: 98.5, yieldClose: 8.2, duration: 3.5 },
|
|
{ date: '2024-01-14', closePrice: 98.2, yieldClose: 8.3, duration: 3.5 },
|
|
]
|