var fDesc=new Array(); fDesc[0] = "Bracket Trader is a powerful API (application programming interface) front-end to control Interactive Broker's Trader Workstation (TWS). The program just duplicates what you do manually to manage your trades but does it faster and eliminates human "mechanical" errors in your trading.
Exit orders are automatically sent the moment a trade entry is filled. The exit is sent as a pair of OCA (one cancels all) orders, with one on the profit side, and one on the stop loss side."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }