40 | {event.description.slice(0, 100).toLowerCase()} 41 | read more.. 42 |
43 |44 | buy and sell shares on various events, and profit from your insights. 45 |
46 |Current Returns
48 |= 0 ? "text-green-500" : "text-red-500"
51 | }`}
52 | >
53 | {currentReturns >= 0 ? "+" : "-"}₹
54 | {Math.abs(currentReturns).toFixed(2)}
55 | {currentReturns >= 0 ? (
56 |
99 | Price: ₹{trade.price.toFixed(2)} | Quantity:{" "} 100 | {trade.Quantity} 101 |
102 |No active trades.
130 | )} 131 | {pastTrades.length > 0 ? ( 132 | pastTrades.map((trade) => ( 133 |144 | Price: ₹{trade.price.toFixed(2)} | Quantity:{" "} 145 | {trade.Quantity} 146 |
147 |= 0 150 | ? "text-green-500" 151 | : "text-red-500" 152 | }`} 153 | > 154 | Gain/Loss:{" "} 155 | {trade.price !== null 156 | ? trade.price >= 0 157 | ? "+" 158 | : "-" 159 | : ""} 160 | ₹{Math.abs(trade.price || 0).toFixed(2)} 161 |
162 |No past trades.
180 | )} 181 |203 | Price: ₹{trade.price.toFixed(2)} | Quantity:{" "} 204 | {trade.Quantity} 205 |
206 |245 | Price: ₹{trade.price.toFixed(2)} | Quantity:{" "} 246 | {trade.Quantity} 247 |
248 |276 | No pending sell orders. 277 |
278 | )} 279 |Logged in as {session.user.email}
40 | 43 |Sign in to continue
47 | 50 |53 | By continuing, you accept that you are 18+ years of age & agree to the{' '} 54 | 55 | Terms and Conditions 56 | 57 |
58 |