Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation since 10/21/2024 in all areas

  1. 1 point
    First of all, apologies if there is a simpler way of doing this, or if it has already been discussed. I've been playing around with my stream deck, I've never really used one before, and I found the multi action key incredibly useful. I've always had problems with not taking profits or taking them too early, so I setup a multi action hotkey that buys into a position with my stop where I double clicked using this FocusWindow Level2;StopPrice=Price;Price = Ask-Price; Share = 200 / Price;ROUTE=SMRTL;Price=Ask+0.03;TIF=DAY+;BUY=Send;TriggerOrder=RT:STOP STOPTYPE:MARKET STOPPRICE:StopPrice ACT:SELL QTY:POS TIF:DAY+ I then use for my multi action hotkey the following, a profit target of 2R of 25% of my size FocusWindow Level2;Route=SMRTL;Share=Pos*0.25;Price=AvgCost-StopPrice;Price=Price*2;Price=Price+AvgCost;Price=Round2;TIF=DAY+;SELL=Send 25% at 2.5R, cancel stop orders and set stop to break even CXL STOP;FocusWindow Level2;Route=SMRTL;Share=Pos*0.25;Price=AvgCost-StopPrice;Price=Price*2.5;Price=Price+AvgCost;Price=Round2;TIF=DAY+;SELL=Send FocusWindow Level2;Route=Stop;Price=AvgCost;StopType=MARKET;STOPPRICE=AvgCost;StopPrice=Round2;Share=Pos;TIF=DAY+;Send=Reverse; and 25% at 3R FocusWindow Level2;Route=SMRTL;Share=Pos*0.25;Price=AvgCost-StopPrice;Price=Price*3;Price=Price+AvgCost;Price=Round2;TIF=DAY+;SELL=Send I know this is really simple, but before when I did want to do this I was entering my trade with a hotkey, then pressing all the additional ones. As I mentioned, apologies if this is really long winded approach, please do share any more optimal methods Jono
  2. 1 point
    Hello Everyone, My name is Maitri and I live in Saanich, Vancouver island . I am newbie in trading and have been interested in it after reading Andrew's book. I am a Business Analyst by profession and would like to learn about day trading and practice it . I have registered with the intro membership to immerse myself with fellow traders and see if this is good fit for my next career.
  3. 1 point
    For free backtesting, you have to know how to code. Quantconnect and Quantopian offer free access to their data packages if you use their cloud to program your script and test (they can see the results, btw). There's a few standalone programs that do it, but they're expensive, and don't include the data (I think one is called Arbiter or something like that). Quality data for a lot of stocks is expensive (I think 10 years of S&P500 symbols at 1 second resolution is like $20k). If you have the data, can program, and want to set up something local there's a few great Backtesting programs written in Python on GIThub. I wouldn't bother with TradeIdeas, their backtesting only goes back to 90days last I checked. It's way too easy to overfit and the small sample size of only 90days will make the algorithm very susceptible for erratic performance. You generally want to optimize for years of data and then test for another set of years the algorithm/strategy has never seen. DAS Replay is a great mode for visually / manually backtesting a strategy, but you can easily introduce various biases in doing so. They have data going back to Oct/Nov 2018 if I recall.
  4. 1 point
    Hi Guys, I wanted to share a hotkey command / script I got from @Robert H that I find very useful. Let me tell you a short story about my frustrations in covering a position. There were times that I'm in a stock just right at the open and it shoots super fast and in favor of my direction. Ofcourse your initial reaction is in shock for few milliseconds. And Instead of covering my LONG/SHORT position, I always end up adding half or full at your target. Imagine how stressful that was! So I've always been curious if there's a magic hotkey to cover either a LONG or SHORT position without worrying which side you are in. And believe or not, @Robert H has the answer! Not sure if some of the guys in our BBT forum has this command already but Let me share it anyways and see if we can tweak it for our favor. ROUTE=SMRTM;Share=Pos*0.5;TIF=DAY+;SEND=REVERSE (for half position Long/Short) ROUTE=SMRTM;Share=Pos;TIF=DAY+;SEND=REVERSE (for full position Long/Short) The only issue I think with this I guess is, it's set as Market order. Meaning, you can get filled at any price (blank cheque) and this is bad if you are trading non liquid stocks or stocks that has huge spreads. This is probably only suitable for smaller trade sizes or with liquid stocks that has tight spreads. If someone has an idea to convert this into a LIMIT order to Hit the Ask when you're LONG and Hit the Bid when you're SHORT that would be great! Hope you find this hotkey useful somehow. Cheers, Ryan (ryan_pdt)
  5. 1 point
    Hi, Here's another hotkey command for STOP Market at avgcost or at breakeven whether you are Long or Short. ROUTE=STOP;StopType=Market;Share=Pos;StopPrice=AvgCost+0.00;TIF=DAY+;SEND=REVERSE Thanks, Ryan
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.