...
No Format |
---|
return bcadd(computeTieredFee($quantity, $monthlyVolume, array( 1000000 => '0.001', '' => '0.00075'), false), 2); |
Different rate for Select Symbols (Per Execution type)
No Format |
---|
if(in_array($symbol, array('AA','BAC','C','MSFT','QQQ'))) {
return bcmul($quantity, '0.001');
} else return bcmul($quantity, '0.0015');
|