...
No Format |
---|
$instrumentType = getInstrumentType($symbol); if($instrumentType == INSTRUMENT_TYPE_OPTION) { return $quantity * 1.65; } else { return $quantity * 0.0005; } |
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'); |
Tiered Plans
Please note: currently the $monthlyVolume
variable in the formulas below includes volume across ALL types of securities (e.g. equities, options and futures volume would be combined). This means that the formula will probably not function as intended if more than one type of security is traded in an account.
...
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');
|