add_filter( 'frm_images_dropdown_option_image', 'use_url_image_dropdown', 10, 2);
function use_url_image_dropdown( $image, $args ) {
if ( ! empty( $args['image_url'] ) ) {
return '';
}
return $image;
}
When you set the Lot Ratio on the Follower’s trading account, this system will multiply the transaction lot which can be smaller or larger.
With Ratio, the size of the contract is not taken into account, so the formula is:
Follower Lot Size = Trader Lot SIze x Rasio
The value of this ratio can be a positive or negative value, the system will round up the lot size increase or decrease the lot size.
The thing to note is that the minimum order rules for each broker are different, in this case the system will automatically try to copy transactions with the minimum value allowed by the broker.
Symbol | Action | Lots | Ratio | Reverse | Symbol | Action | Lots |
EURUSD | BUY | 1.00 | 1x | No | EURUSD | BUY | 1.00 |
GBPUSD | BUY | 2.00 | 0.5x | No | GBPUSD | BUY | 1.00 |
AUDUSD | SELL | 4.00 | 2x | Yes | AUDUSD | BUY | 8.00 |