|
|
|
|
|
by yummyfajitas
5106 days ago
|
|
For simple accounting, it wouldn't be slower. The issue is analytical code, e.g.: int price = getPrice(symbol);
double signal = exp(...) * ((double)price);
if (signal > threshold) {
buy(symbol);
}
The point is to avoid converting from int to double every single time you need to do a calculation. |
|