-
Content Count
1,332 -
Joined
-
Last visited
-
Days Won
99
peterB last won the day on December 31 2024
peterB had the most liked content!
Community Reputation
325 ExcellentAbout peterB
-
Rank
peterB
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
there can be 2 reasons for this 1. you have an existing order placed. you need to cancel that first 2. your broker has a generic problem with SSR like the Ocean One Securities which can be partially solved like this https://open.substack.com/pub/traderpeter/p/das-trader-pro-advanced-hotkeys-part-551?r=1wujo4&utm_campaign=post&utm_medium=web&showWelcomeOnShare=false
-
Discord kanal BBT bol nedavno zruseny. Priciny nezname...
-
Range Order 4:1 hotkey HELP needed!
peterB replied to Long H.'s topic in DAS Trader Pro Tips and Tricks
in certain conditions like if you do not change the symbol it is possible, monitoring the unrealized profits you can conditionally call something like this https://open.substack.com/pub/traderpeter/p/das-trader-pro-advanced-hotkeys-part-88c?r=1wujo4&utm_campaign=post&utm_medium=web&showWelcomeOnShare=false otherwise it is harder to accomplish but still possible but depends on individual use of DAS -
https://dastrader.com/docs/how-do-i-trade-futures/
-
Issue with “Adding to a winning position”
peterB replied to Balazs Horvath's topic in DAS Trader Pro Tips and Tricks
never use replay mode for testing hotkeys -
Issue with “Adding to a winning position”
peterB replied to Balazs Horvath's topic in DAS Trader Pro Tips and Tricks
it is 60% of the current BP so if you still have some BP on the 2nd key press it will use the 60% of the rest and add a true BP check for the first key press looks like this $myBP=5000; $want=$risk/$pricetostop; if ($myBP<=$want*LAST) { $amount=round($myBP*0.97/LAST,0)-1; } else { $amount=$want; } for the add it is more complicated for more modern hotkeys go here -
this is crucial. congrats to this achievement. the rest was just a lesson to be remembered. do not repeat it ever. you can consider the 300k unrealized as a luck and not something you achieved with proper process so it is not earned and to be kept. forgive yourself first. it will pass. you never had the money in your hand. it was just a number on the screen. it did not change your life being there or not being there. you are still ok. you risked it and you lost it. that was the play. swallow. remember it. move on. https://open.substack.com/pub/traderpeter/p/why-are-your-losing-days-bigger-than?r=1wujo4&utm_campaign=post&utm_medium=web&showWelcomeOnShare=false
-
ROUND2 is old syntax to be used like PRICE=ROUND2 to round the PRICE field on the montage. With advanced hotkeys you should use the round() function eg. $mystop = ROUND(avgcost,2); for more info go here
-
https://traderpeter.substack.com/p/das-trader-pro-advanced-hotkeys-part-88c
-
that is because your order was not filled quickly enough, you can solve it by adding wait(1000) or try the Triggerorder syntax after your Send; command more on hotkeys
-
adds Add hotkey with same risk amount
peterB replied to Julien Maisan's topic in DAS Trader Pro Tips and Tricks
here are two soutions first second if you PM me there I have a single hotkey solution for both longs and shorts -
adds Add hotkey with same risk amount
peterB replied to Julien Maisan's topic in DAS Trader Pro Tips and Tricks
i will be posting a solution this week