Jump to content

Asbjorn

Members+
  • Content Count

    13
  • Joined

  • Last visited

Community Reputation

0 Neutral
  1. Seems like I had to chance this last part (in bold) for it to work, I tried with and without your suggestion (first bold part), but it didn't make a difference, so not sure what it does: Price=Price-Bid+0.00;SShare=10/Price;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;Sshare=DefShare-SShare;Share=0.5*SShare;TogSShare;ROUTE=SMRTL;Price=Bid+0.2;TIF=DAY+; Price=Price+0.2-Bid+0.00;SShare=10/Price;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;Sshare=DefShare-SShare;Share=0.5*SShare;TogSShare;ROUTE=SMRTL;Price=Bid+0.2;TIF=DAY+; reason why I want this is because stocks moves so fast, so the bounce back to where I want to get in might be too fast for me to react to enter. Thank anyway
  2. I understand that 20 cents could be too much or too little, what I want is just a limit order that don't get filled right away, and which I can drag around to get filled on a bounce (closer to my risk), I know the risk will increase/decrease depending on where I drag it, and that's okay. Also I will have two or three hotkeys for it depending on what price range it is. It just to get a better price on a bounce, and risk somewhere around what I'm willing to risk without having to calculate how many shares I need. Thank you, I will try this when market opens.
  3. what do you mean? If I set risk at 6, and current ask is at 5, I want it to send a limit order at 5.2. Risking 50 dollars. Is that possible? I have tried, but didn't find out what number to change to get it to work, that's why I'm asking
  4. Is it possible to use this code to send a limit order short 20 cents ABOVE current ask? CXL ALLSYMB;StopPrice=Price+0;DefShare=BP0.99;Price=Price-Bid+0.00;SShare=50/Price;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;Sshare=DefShare-SShare;Share=0.5*SShare;TogSShare;ROUTE=SMRTL;Price=Bid-0.1;TIF=DAY+;SELL=Send;DefShare=200;Price=StopPrice-Bid*3;Price=Bid-Price;TriggerOrder=RT:STOP STOPTYPE:RANGEMKT LowPrice:Price HighPrice:StopPrice ACT:BUY QTY:POS*0.25 TIF:DAY+;TIF=DAY+;TriggerOrder=RT:STOP STOPTYPE:RANGEMKT LowPrice:Price HighPrice:StopPrice ACT:BUY QTY:POS*0.25 TIF:DAY+;TIF=DAY+;TriggerOrder=RT:STOP STOPTYPE:RANGEMKT LowPrice:Price HighPrice:StopPrice ACT:BUY QTY:POS*0.25 TIF:DAY+;TIF=DAY+;TriggerOrder=RT:STOP STOPTYPE:RANGEMKT LowPrice:Price HighPrice:StopPrice ACT:BUY QTY:POS*0.25 TIF:DAY+;TIF=DAY+
  5. Thanks, I think it would work just having it like this. I usually short small side frontside, then when it seems to reject and found the top, I go short one more bullet (the script from this thread) then I cover partially, 4 covers below. I see I can just drag them lower, it was just for those times it drop so fast I don't have time to drag them, that I saw after a script to spread them, but I just do it manually for now. Thanks for the headsup about marketstop
  6. Thank you, yes I'm aware 3/Price defines the target, but I'm unsure how to implement it into 4 range orders. Now with the script above it sends 4 range orders, (25% each of the posititon), all with 3R. I want it for range order #1 (25%) to send a 3/R range order #2 (25%) send a 4R and so on
  7. Hi thank you for the reply! I'v talked with DAS support now, seems like its only possible to either set % of POS or number of shares, and not the last shorted position. I went back a few pages, this script of you seems to do what I'm looking for anyway. Is there a way to spread these cover to 3 times, 4 times, 5 times and 6 times, the risk? Now its set to 3 times the risk for all of 4 of them: CXL ALLSYMB;StopPrice=Price+0;DefShare=BP0.99;Price=Price-Bid+0.00;SShare=3/Price;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;Sshare=DefShare-SShare;Share=0.5*SShare;TogSShare;ROUTE=SMRTL;Price=Bid-0.1;TIF=DAY+;SELL=Send;DefShare=200;Price=StopPrice-Bid*3;Price=Bid-Price;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:Price HighPrice:StopPrice ACT:BUY QTY:POS*0.25 TIF:DAY+;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:Price HighPrice:StopPrice ACT:BUY QTY:POS*0.25 TIF:DAY++;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:Price HighPrice:StopPrice ACT:BUY QTY:POS*0.25 TIF:DAY++;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:Price HighPrice:StopPrice ACT:BUY QTY:POS*0.25 TIF:DAY+
  8. I don't have any other hotkeys than this, so no problem. Question is, what do I replace the share=pos with? What would be the best, is that it set out a range order for the number of shares I just shorted. I know its possible to set a limit order together with the stop market order, however its kind of risky as the stock often has a wick taking out my stop order, then it tanks to my cover and I'm suddenly long x number of shares. Benefit with range orders is that the limit order disappear when u get stopped out.
  9. is it possible to modify the code for the short to only set a stop order for the number of shares that it shorts? So it doesn't take your whole position? Usually I already have some orders in on a stock, and wants to add when it confirms, so I use the hotkey to short x number of shares. Problem is now that I already have range orders in for covers, and now also get a stop market order for the whole position, so if the stock goes against me fast, I suddenly cover to much such that I'm long the stock. Ex: current position 100 shares. Using hotkey, it shorts 55 shares and place a stop order market order with 55 shares, and not 155 shares like it does today.
  10. Hi If I understand this script correctly, does it place a stop order for your WHOLE position? Cause I already was short 50 shares, and had a range order on that, and when the stop order came (after I pushed the hotkey for a certain risk), I think it included those 50 shares I had before, as I got stopped out on the whole position
  11. its not an order after an order (OCO). Its only one order, a range order, where it insert a stop market loss and a limit cover at the same time. Using the script from Short with $20 risk per trade WITH Stop sent to the market as seen here, or is that not possible? I might be wrong and misunderstand how these orders works, if that so, thank you for your time
  12. Hi, great script! I wonder if its possible to add a limit cover order 50 cents below the bid with the same amount of shares that you get fill at the same time with the script? Such that you end up with a stop market and limit cover order with the same amount of shares when you press the hotkey Short with $20 risk per trade WITH Stop sent to the market: StopPrice=Price+0;DefShare=BP*0.925;Price=Price-Bid+0.00;SShare=20/Price;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;Sshare=DefShare-SShare;Share=0.5*SShare;TogSShare;ROUTE=SMRTL;Price=Bid-0.05;TIF=DAY+;SELL=Send;DefShare=200;TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice+0.05 ACT:BUY STOPPRICE:StopPrice QTY:Pos TIF:DAY+;
×
×
  • 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.