@@ -212,7 +213,7 @@
- Risk Management
+
This is a high risk product for RanchiMall. We guarantee protection from losses
and a minimum rate of return.To control our risks, we limit the total aggregate amount of guarantee
@@ -223,7 +224,7 @@
their long term prices.The maximum amount of aggregate guarantee amount for this product should
be lower than 20 percent of RanchiMall assets to protect against catastrophic Bitcoin price fall.
- Founder Notes
+
-
@@ -364,6 +365,7 @@
function renderAllSeries(){
const frag = document.createDocumentFragment()
getRef('bit_bond_series__container').innerHTML = ''
+ const randIndex = getRandom(0, bitBondSerieses.length - 1)
bitBondSerieses.forEach((series, index) => {
const [currentValue, percentGain] = calcNetValue(series.series, series.startDate, 0.13, 5, 0.5, 100, 64)
const obj = {
@@ -374,16 +376,20 @@
percentGain: percentGain.toFixed(0)
}
const timelineItem = create('li', {className: 'timeline-item'})
-
+
const tilelineItemHeader = create('header', {
className: 'timeline-item__header',
text: getFormatedTime(series.startDate, true)
})
+ if(randIndex === index){
+ getRef('performance_preview').append(render.bitBondRow(obj))
+ }
timelineItem.append(tilelineItemHeader, render.bitBondRow(obj))
frag.prepend(timelineItem)
})
getRef('bit_bond_series__container').append(frag)
+
}