We have moved to Discord. Please click here to join us in the Trading Terminal Discord server.
These forums are read-only.
Leaderboard
Popular Content
Showing content with the highest reputation since 07/28/2023 in Posts
-
3 pointsHello everyone, What plan do I need for the Trade Ideas: Premium or Standard? Do I need it when I am going to start just trade on simulator? Thanks in advance, Lana.
-
3 pointsTo complete the rider agreement DAS Trader - Interactive Brokers IBKR: the first two slots is today's date the third slot is DASTRADER and the forth slot is you U account numbers you will only sign the customer side and upload, don't worry about IB side signature, it will be sent after upload to IB to fully connect the account
-
2 pointsUpdated: 8/8/2019 @ 12:44pm (PST) Finally out of the alpha stage and releasing this to the community, I've been using it with success. Because I had to do some musical chairs with memory I made a configuration utility as the script itself is very ugly. This is more of a BETA release for this, so if anyone wants to try this out in SIM and let me know if you have any issues with the configuration sheet or the hotkeys themselves. It's based on the work started by @fjmocke here: https://forums.bearbulltraders.com/topic/469-das-calculate-shares-based-on-account-risk/ . What it is: It's a hotkey command script that can be used to dynamically alter the share total based on: Available Buying Power (capital) Stop Location (Risk) % Account Risk OR Fixed Dollar Amount The script includes purchase power protection and won't send an order that you can not afford, it does this by calculating two factors: A - Shares You Can Afford B - Shares at Risk Parameter (e.g. $25,000 account equity, 1% risk = $250 risk, $250 * a stop distance of .10 = 2500 shares) min{A,B} = 0.5(A + B - | A - B | ) But, why male models? I just told you. /Zoolander reference You'd use this to calculate your share total based on what you're willing to risk. So instead of blindly throwing 500 shares at every setup, you can dynamically alter risked amount based on the per-trade setup. I use it on my StreamDeck (will also release the icon packs soon) with modifiers of 100%, 75%, 50%, and 25%. 100% is the A-Plus setups I see, those I have HIGH confidence in. Alternatively, if a stock has a large spread or is low-float, I may only use the 25% modifier key for those. Instructions for Configuration: Go to this link: V2.1: DOWNLOAD ^^ Recommend latest DAS version of 5.4.3.0. Requires DAS version 5.2.0.34 or above (current BETA branch as of 11/19/2018) for the physical stop portion to work. If you don't use the physical stop, you don't have to worry about it. NOTE: Thoroughly test in SIM to make sure it's doing what you expect it to do. Choose: Download the ZIP file and unzip to where you want. On "Setup & Instructions" configure your settings. Account Leverage (default for DAS is 4), this is the margin your broker gives you. Some off-shores give 6. It needs to match what is configured in DAS for proper calculations. Max Account Risk %. This is the maximum percent of equity you're willing to risk on every trade (default is 1%). You can always risk lower (more on that later). % of Total Buying Power. If you don't want to calculate based on the total buying power of 100%, you can set this to a lower percentage (example: 100,000 buying power with 60% here equals $60,000 maximum position size) Route. LIMIT, MARKET, SMRTL. Default is LIMIT. Order Bid/Ask Offset. This is the offset you use when you send the price for order, e.g. "Ask + 0.05" (meaning fill me up to 5 cents above ask) Time in Force. Default: Day+ Default Shares. This is the amount of shares you want to set as the DEFAULT SHARES for all trades (e.g. when you click a Symbol and it loads, this is the share total). You can see why this is here in the technical breakdown section below. Minimum Stop Buffer. This is an offset to the stop distance. If you set this to 0.05, it'll add 5 cents to the stop distance calculation (so if your stop distance is 0.05, it'll be calculated on 0.10). Switch to the "Hotkeys" tab. Choose your preferred style. % Risk of Equity (Dynamic) or Fixed Price (e.g. $150 risk). %Equity Risk: Use the drop down to select what you want the value to be % equity. NOTE: This is a modifier AFTER your account risk maximum %. So if you have 1% account risk, and set this to 50%, your effective account risk is 0.005 --> 0.5%. $ Fixed: Use the drop down to select what you want the value to be for dollar risk. Select "long" or "short" to flip the script's direction. Click the cell that contains the start of the command (E column) and Ctrl + C (copy). Paste it into DAS. It should look like a sample command below. Instructions for Usage: First, you must have "Double Click to Trade" turned on in Chart, Right-Click --> Configure --> Settings --> Double-click to trade. Double click the chart where you want to set a mental stop (it does not place a stop order, you can always put one in after). Hit your configured hotkey. Sample Scripts: LONG: DefShare=BP*0.98; Share=DefShare*0.25* Price * 0.01; Price = Ask - Price + 0.02;SShare = Share / Price; Share = DefShare - SShare; DefShare = DefShare + SShare; SShare = Share; SShare = DefShare - SShare; Share = 0.5 * SShare; TogSShare; ROUTE =LIMIT; Price = Ask + 0.05; TIF=DAY+; BUY=Send; DefShare = 500; SHORT: DefShare=BP*0.98; Share=DefShare*0.25* Price * 0.01; Price = Price - Bid + 0.02;SShare = Share / Price; Share = DefShare - SShare; DefShare = DefShare + SShare; SShare = Share; SShare = DefShare - SShare; Share = 0.5 * SShare; TogSShare; ROUTE =LIMIT; Price = Bid - 0.05; TIF=DAY+; SELL=Send; DefShare = 500; Technical Breakdown: DAS has basic scripting. Montage commands have access to very few read/write variables, basic operations, and only operators of addition, subtraction, division, and multiplication. To do this calculation we need additional operators (min function, and absolute function) and more memory for storage of variables. This command gets around these limitations by using user-writeable areas of memory in the program. Since DAS is written in the C++ language (from what I can tell), it's strict on what can be done in these existing memory locations. The hotkey uses the following items (plus the usual Price -- FLOAT): (Assumptions on Datatypes) DefShare -- INT (Used as a temporary variable for storage) SShare -- Unsigned INT (Behaves like an Unsigned INT in certain situations. Used as a temporary variable for storage) Share -- INT (Used as a temporary variable for storage) With the 3 INT variables, objects are moved around in memory so that we can calculate and compare with our variable limitation (be much easier if we could assign our own). To facilitate the ABS() function, we use a trick --> When a negative value is placed into an Unsigned INT it loses it's sign (thus, it becomes a POSITIVE value in memory). A more detailed technical breakdown (step by step) is located in the Configuration spreadsheet up above. Future Enhancements: If need be, I can make a step-by-step video of this entire process. I have a version that uses an AutoHotKey macro to drop a line at the stop location, I can upload that as well if people want it. ^^ Update, I discontinued this as it was too cumbersome. You had to have two sets of hotkeys for each command. I may someday revisit it if I can build out a configuration tool for it. TLDR: It does the math for you so you can risk a known amount (% or $) based on your per-trade risk position (stop distance). And yes, I'm a bit of a tech nerd. Also, longest post .. ever. Would not read again, 0/5 stars. --- KNOWN ISSUES: %Account Risk gets smaller and smaller when subsequent open positions Reason: No Equity variable, we reverse calculate equity using Buying Power. On subsequent positions, the % (e.g. 1%) calculation will be based on the available buying power and NOT the account equity. Workaround: Precalculate the %risk and use it for the $risk versions. So 1% of $25,000 equity equals $250. SSR rejection on LONG position when scaling out; rejection message (e.g. "Short marketable limit order disable due to SSR!") if using the automatic STOP trigger. Reason: DAS calculates that the position will drop below the open stop order position and reject as this can cause the position to "flip" if it was triggered. Workaround: Have a hotkey to clear the open orders (CXL ALLSYMB), clear it, scale the position (e.g. 25%). Either replace the stop or switch to a mental stop. Alternatively, you can add "CXL ALLSYMB;" to the front of the scale-out hotkeys. You just have to be cognizant to replace the stop order. Equated position size if very small (e.g. 4 or 5 shares when expected is hundreds). Reason: Wrong side was used for the order. E.g. a long hotkey is used when trying to go short. -or- Stop Distance was calculated to be a negative value (clicked too close to current price). Workaround: Be cognizant of the hotkeys used and the stop distance clicked. Clicking too close (a really tight stop) can be very dangerous if you do it inadvertently. TriggerOrder for automatic STOP placement not being sent (no stop order placed). Reason: Montage is not set to a style that doesn't allow TriggerOrder input. Styles not compatible are: Default [DAS's, if you changed it], Basic, OCO, Option, Full Fix: Use a style that is compatible, they are: Stop Order, Detail, Trigger -- I recommended using the "Stop Order" montage style. To change this, right click the montage area around where you'd enter a price and select Style --> Your Choice. --- UPDATES: 10/17/2018 - Added v.1.1 link, you'd need to use the new version to change anything. - General cleanup of the script. Added instructions for the IB issue (discussed in this thread) - NEW FEATURE: Added a new section to the Hotkeys sheet, it will now create a set up for Dynamic Scale-In hotkey commands. You'd use these by setting a scale value (say you want an additional 50% of your current position size). The hotkey will calculate the maximum share you can afford (how much you can afford at the moment) and the scale value, choosing to take the least amount. So if your current position is 1500 shares (@ $50.00) and you want to scale in at 50% your current position, it'd check if you can afford an additional 750 shares, if you can't, it'll buy the maximum you can afford. For this example, you can't afford it (if Buying Power is 100k), so it'd buy roughly $25k worth (500 shares). - CLEANUP: Cleaned up the $Dollar Risk version and removed unnecessary steps. Don't really need to replace yours if they exist, but worth noting. 10/30/2018 - Added @Michael P's suggested fixes for Excel. Configuration tool should now work in both Sheets and Excel. - NOTICE: This was a configuration tool change, no changes were made to the hotkey scripts, so no need to change any existing hotkeys. 11/19/2018 - Shortened some of the commands so we don't hit any hotkey character limit, makes them less readable, but shorter. Couldn't get them low enough to fit the montage buttons though (although removing the portions for the buying power rejection protection would likely do it). - Added a section for SELL/COVER buttons for people who just need to create those. E.g. "Sell 25% position" or "Sell 33% position". - Added @Robert H's stop suggestion. New fields on the setup page for enabling physical stops. If enabled, it'll place a MARKET or LIMIT (settings included) trigger order to go into the market once the initial order is fulfilled, these are placed at the location you double-clicked on the chart. 11/20/2018 - Added a stop-order setting to set an additional buffer for the stop price (for those that want to include or exclude the double-clicked price). - Added conditional formatting to subdue the stop settings that aren't required if you disable sending a physical stop into the market. 12/10/2018 - Added a known issues section to this post and the spreadsheet (for when a new version goes up). 12/12/2018 - Updated known issues section to include the "Montage Style" issue for TriggerOrders. 12/13/2018 - Updated to new version 1.46. Fixed a bug in the Trigger Order script which could cause it to not be interpreted by DAS's command parser on certain user settings. - Added "modifier" extra hotkeys. See instructions next to these on how to use them. - - - Set Stop to Breakeven - Long or Short - Stop Limit or Stop Market (cancels any pending orders for SYMB) - - - Set Stop to Breakeven - Bidirectional - Stop Market (cancels any pending orders for SYMB) - - - Stop - Update Price - Long or Short - Stop Limit or Stop Market (cancels pending orders, double click chart where you want stop before firing hotkey) - - - Stop - Update Price - Bidirectional - Stop Market (cancels pending orders, double click chart where you want stop before firing hotkey) - - - Stop - Update Position - Long or Short - Stop Limit or Stop Market - Replace (requires you double-click the original stop in the Orders window) - - - Stop - Update Position - Bidirectional - Stop Market Orders Only - Replace (requires you double-click the original stop in the Orders window). 8/8/2019 - New version 2.0, download the .zip file and unzip it. - Fixed an issue with some hotkey configurations that may have caused them to be inaccurate in vary rare situations. Recommend recreating your hotkeys in this new version, just to be sure. - Added Profit Target hotkeys. - Added % Scale-In Hotkeys - Added $ Risk Scale-In Hotkeys - Added Short-SSR to Long/Short dropdown for SSR hotkeys (DAS Simulator) - Added Range Order hotkeys - Added Y-Margin Scale Increase hotkey, Y-Margin Decrease, and Y-Margin Reset - Added new sheet "Example - Equity%" and "Example - $Risk" to give a more workflow outlook on what is happening. - Included a ScaleOut worksheet to manually simulate what different scale percentages / scenarios look like (instructions will be in the video). ALSO: Video is done and rendering, I think it comes in at 45minutes with 3.4gigs (4k), so it'll need to be optimized before I upload it to YouTube. Will try to do it today and will update this when done. 9/10/2019 - New version 2.1 released. Just general clean up (UI) and bug fixes. - FIXED: Issue with the Scale-In $Risk hotkeys. - FIXED: Issue with the Stop Update Price long and short hotkeys> ^^ If you use either of those, please regenerate them and replace in your DAS to avoid issues. UPDATES: The majority of this side project is completed and besides a few requests I have in with DAS developers to optimize a few things, out of any major bugs or improved scripting features, I'd say this is about done. I'll provide any edge-case support as need, but I want to move on to other BBT-community projects. So what do I have cookin' for you guys, gals, and cat? You'll see a glimpse in the video of an early prototype (buggy! I programmed that in a few hours, so bugs are expected) of a DAS calculator side program. The newer version (need to finish the UI) will incorporate a lot more in ways of tools for you, including automatically calculating changes without a hotkey intervention. It also allows you to mass-process trade log .csv files you may have exported and compile it into Excel or .CSV for import into other programs. Configuration is drag/drop friendly, so rearranging your columns is as easy as click and holding. I'm also going to shift my attention to finishing my ORB-strategy research. Right now, my datapool encompasses 15000 news article, gaplists for 2011-2019, and 1second data for stocks in that range. It's a data store of roughly 80 gigs. The idea is to test for hidden signals we may not see that can indicate a potential direction of an ORB strategy (if no rare outside influence occurs, like a terrorist attack) by leveraging a consortium of machine learning algorithms to give us a higher probability of success for each day. Depending how the research works out, the end product would likely be a probability predictor for each day. I'll share the research results with the community and may incorporate some other tests as well. VIDEO: Ok, so I may have gone down an editing rabbit hole and that took longer than expected. The videos are up, came in quite long so I chunked it down. Sorry it's a tad scattered and not one-linear cohesive unit, but I tried to mark it up as best as possible. Part 1 - Config / Math - https://youtu.be/YrRrydwGyRY Part 2 - Setup, Quick Examples, Tips - https://youtu.be/pXLlWF7T6hw Part 3 - Sim Trade Example - https://youtu.be/SO9UhJh4dTc Bonus 1 - Scale/Price Excel Calc - https://youtu.be/KTr_iJ2p0TU Bonus Tips - https://youtu.be/sNHXFMoia7A
-
2 pointsDAS TRADER PRO ADVANCED HOTKEYS – A PRIMER [2024-04-15: Production v.5.7.9.3] − Speed and efficiency are paramount in the fast-paced world of stock trading, particularly day trading. As traders, we are constantly seeking tools to gain an edge in the market. One such tool that has gained popularity among day traders is DAS Trader Pro, renowned for its robust platform and advanced hotkey scripting capabilities. − As I share insights about DAS’s Advanced Hotkeys, I want to underscore that most of the knowledge I’ve acquired about this craft—like many others in the trading community—was generously shared. I must acknowledge that I have no official affiliation with DAS Trader Pro software and that my present information is based solely on personal experience. − This presentation serves as my way of giving back—a small contribution to the community that has provided me with so much. Everything discussed here is intended for educational purposes only. It's crucial always to conduct your due diligence and independently verify any details, as this responsibility ultimately lies with you. The concept − The purpose of this exercise was to create a set of hotkeys for my trading. My hotkeys came from various good Samaritans willing to share; not all are equally effective. Understanding the complexity of the script itself was challenging at first. It's essential to test your hotkeys before trading, as you may realize they are not working as intended or don't meet your specific needs. − I set out to create a single hotkey script to fulfill most of my trading requirements, from buying options calls and puts to trading shares of stocks, long or short, while managing risk. The accompanying Excel spreadsheet allows you to input your specific settings. Want to trade stocks, long or short? Options, buying Calls, or Puts? Adjust risk levels? It’s all there. You create a script that aligns precisely with your trading style by customizing these parameters. Script Flow In this section, I will summarize the key steps in the script, from initializing variables to setting up the trigger order based on the defined trading strategy. 1. Initialize trading variables using the accompanying Excel spreadsheet (risk per trade, position size, price offsets, etc.). 2. Check trade bias: a. If LONG: Calculate the buy price and set up a SELL stop-loss order. b. If SHORT: Calculate the selling price and set up a BUY stop-loss order. 3. Compute position sizing: a. Account-based sizing uses percent position size, buying power, and risk percentage. b. Risk-based sizing using fixed dollar risk or percentage risk. 1. Dollar Risk : 2. Percent Risk 4. Adjust position sizing for options/stocks trading and ensure sufficient funds. 5. Determine minimum position size based on the lesser of account-based or risk-based sizing. 6. Prepare order details (price, route, time in force). 7. Execute or load the appropriate BUY or SELL order based on trade bias and order status. 8. Set up trigger order with stop type, price, action, and quantity. How to use the Script (please see prerequisite section) Using the script is straightforward if the script is linked to a hotkey: Double-click on your chart at your desired stop-loss price. Fire the hotkey linked to the script Conclusion In the exhilarating world of stock trading, where split-second decisions can either make or break fortunes, speed and efficiency serve as our trusted allies. Time saved is not merely a commodity but the defining factor between seizing an opportunity and watching it disappear. Cross-verifying information remains wise, just as one inspects a parachute before taking the plunge. This presentation humbly supports the trading community by fostering growth through education. Connect with me on X (@ItoThetrader), where I will do my best to address some of your questions/bugs and suggestions and try to improve. Happy trading! Despite my best efforts, there may be some errors in this document. I apologize if you come across any. After all, making mistakes is human, and I am only a mortal armed with a keyboard and a spellchecker. Download the accompanying Excel file Ito DAS Advanced HotKeys Primer v0.16.6.pdf
-
2 points@members due to very profund changes in the chatroom and my lack of time in the past months the theme shared in the first post of this topic no longer work. I took some time to update the icons for the 6 tabs and few things more. Here is the result. Please refer to the first post of this thread to check how to setup it up ! protradingroom_v3.txt
-
2 pointsHello, I am Rong from Seattle, Washington, USA. I am a software engineer. I just finished my bootcamp training and started using BBT. I trade opening momentum breakouts/breakdowns. I developed trading bots to execute orders for me to achieve fast order submission and following my rules. You can read about my trading bot here https://docs.google.com/document/d/1WN9hR-SVI6q3vMwEA69xNbXWvPmpl2Zt14jnxqHydPQ/edit#heading=h.ajxsjfzc2f52
-
2 pointsHey Folks, I just joined the BBT family about 2 weeks ago. I just moved from Seattle back to STL. Wish I would have known you all lived there beforehand. Either way, I visit Seattle a lot for business, and friends. I would love to meet with some of the BBT family next time I am out there. Don't hesitate to let me know when the next gathering is, because I can definitely schedule a visit back to my second home. Anyways, I appreciate you all for the future lifetime connections.
-
2 points
-
2 pointsWe can now process orders anytime, just like if we did it manually. All the details here.
-
2 pointsI recently downloaded Thor's NinjaTrader 8 .xml Template file. I could not figure out how or where to put the file in NinjaTrader. I have emailed Thor for help but still no answer. But I did contact NinjaTrader. They responded real quick but were not able to help me get it in the right folder because I really didn't know what to tell them it was. But I finally found some answers on the web which said that file would go in the "Workspace" folder. I inserted it there, restarted NT8 and opened the Workspace "ThorNinja Template" and still nothing. So, does anyone know how to get the file installed properly? Thanks. OK, I found the answer online. For Thor's NT8 Template, upload it on your computer to the "NinjaTrader 8\Templates\Chart" file. You can then open it as new Template in NT8.
-
2 pointsHey everyone! Excited to have found the BBT community. I'm 44 and recently moved to the Cincinnati area. I have driven past a billboard about learning day trading for over a year now, and for some reason it resonated with me this week. Mainly I think what prompted this was listing to Tom Bilyeu taking about breaking the time for money equation. I've had in interest in stocks and stock investing for a long time now, but I've always hesitated about day trading for all of the negative stigma around it. But as I started to look into this one company's training program, I started looking around the marketplace and Reddit and have come to believe the overwhelming feedback out there that you don't necessarily need to pay for expensive trainings and individualized coaching, but you DO need an appetite and willingness to learn and the support of a strong community. Enter BBT. I found Andrew's book and the BBT podcast and am grateful for both! I'm not all the way through the book yet, but I'm excited to crush it pretty quickly, join the next onboarding training, then getting after it! I'm really looking forward to getting to meet everyone, learning the trade smartly, then graduating to real investments in the near future. Cheers! 😃
-
2 pointsI've been waiting for Thor's book release to share a gift. I've been working for months on my Cam study for ToS. I would like to present version 1.0 with and without premarket data. And more importantly, it tells you whether to look at cams with or without, and by default only shows you the cams based on Thor's teaching! The option is there to see both, or just one or the other too. Enjoy! https://usethinkscript.com/threads/camarilla-pivot-day-trading-system-for-thinkorswim.12988/
-
2 pointsCertainly, let's explain the terms with a little help from Google and ChatGPT! 1. **IDAS** IDAS is the DAS Trader Pro platform designed for mobile devices. 2. **TotalView** TotalView is Nasdaq's premier data feed, which displays every single quote and order at every price level for Nasdaq-, NYSE-, MKT-, and regional-listed securities on Nasdaq. It provides visibility into all displayed quotes and orders attributed to specific market participants, including access to total displayed anonymous interest. 3. **IEX Deep** DEEP is used to receive real-time depth of book quotations directly from the IEX Exchange. The depth of book quotations received via DEEP provides an aggregated size of resting displayed orders at a specific price and side, without indicating the size or number of individual orders at any price level. 4. **Forex (Foreign Exchange)** Day traders in the foreign exchange (Forex) market engage in buying and selling currency pairs within the same trading day, with the aim of profiting from short-term price movements. Forex is highly liquid, and day traders use leverage to magnify potential gains or losses. 5. **FLOAT Data** In the context of day trading, "FLOAT" typically refers to the public float of a stock. The public float represents the number of shares available for trading by the general public, excluding closely-held shares. Day traders often consider the float when assessing the liquidity and potential price movements of a stock. 6. **Replay Level 1** Traders can use the ability to replay Level 1 market data to analyze their past trades or to practice and refine their strategies. It allows traders to review the last traded price, bid and ask prices available during historical trading sessions. 7. **ARCA OPRA** For day traders, "ARCA OPRA" might refer to options trading data on the NYSE Arca exchange that is reported to the Options Price Reporting Authority (OPRA). This data is crucial for options traders to make informed decisions regarding options contracts listed on the NYSE Arca. 8. **Level 1** Level 1 data, in day trading, provides essential real-time information, including the last trade price, bid price, and ask price. Day traders often use this information to monitor current market conditions and make quick trading decisions. 9.** Level 2** Day traders rely on Level 2 data to gain a deeper understanding of market depth. It includes a list of current buy and sell orders, the number of shares or contracts available at each price level, and quotes from market makers and ECNs. This detailed information helps day traders assess market liquidity and identify potential entry and exit points for their trades. voilà! AND the realtime data feed is included in those DAS subscribtion!
-
2 points
-
2 pointsJust to confirm, the proper order is: 1. double click the StopLoss price 2. hit the entry button (order fills) 3. hit the exit button (without clicking on anything) 4. go for a swim in the pool 5. come back later and count your money I'm glad to give back to the community. (and programming hotkeys is fun!) Good luck! Russell
-
2 pointsOkay, I've got some HotKey Scripts for you to TRY OUT IN SIM. (never test things live) Each trade has two HotKeys. The first one is the entry order where you double-click your Stop-Loss point. (I basically just removed the TriggerOrder from your HotKey Script and moved it to my Exit Script) The second one is the exit order which you would place immediately after your entry order is completely filled. Don't double-click anything between the "fill" and when you activate the Exit HotKey because it gets it's calculations from your Entry HotKey. Here is what the Exit HotKey does: 1. places a one-share RangeMarket order with a 1R/1R range. 2. Triggers a remaining-shares RangeMarket order with a 3R/BE range. There is no other way to do what you want (as far as I know) without the tiny one-share order to trigger the Stop-Loss move to B/E. With these HotKeys, this is what "should" happen (and it worked for me in SIM today). If your 1R Stop-Loss is hit, the Trigger order exits your WHOLE position "near" your target Stop-Loss. If the 1R profit point is reached, you will exit one share, then the Trigger order will be sent so that you will either profit 3R or B/E on the remaining position. (You could change the exit orders to exit more of your position at 1R if you want to use these HotKeys to "partial" at 1R... something like Share=POS*.5 or Share=POS*.33 with your Trigger order remaining Share=POS) Be aware, the first exit order of one share will cost you about $1 in fees more per trade if you are with IB. (I mistakenly said $2 earlier) (Fees are no longer a danger when your orders are more than 200 shares) Here are the Scripts, you should be able to copy-paste them directly into your HotKeys. LONG ENTRY CXL ALLSYMB; StopPrice=Price; DefShare=BP*0.975; Price=Ask-Price+0.00; SShare=25/Price; Share=DefShare-SShare; DefShare=DefShare+SShare; SShare=Share; Sshare=DefShare-SShare; Share=0.5*SShare; TogSShare; ROUTE=LIMIT; Price=Ask+0.1; TIF=DAY+; BUY=Send; DefShare=200; Price=Ask-StopPrice*3+Ask; LONG EXIT CXL ALLSYMB; Route=STOP; StopType=RangeMKT; LowPrice=StopPrice; HighPrice=AvgCost-StopPrice+AvgCost; Share=1; TIF=DAY+; Sell=Send; TriggerOrder=RT:STOP STOPTYPE:RANGEMKT LowPrice:AvgCost HighPrice:Price ACT:SELL QTY:POS TIF:DAY+; SHORT ENTRY CXL ALLSYMB; StopPrice=Price; DefShare=BP*0.975; Price=Price-Bid+0.00; SShare=25/Price; Share=DefShare-SShare; DefShare=DefShare+SShare; SShare=Share; Sshare=DefShare-SShare; Share=0.5*SShare; TogSShare; ROUTE=LIMIT; Price=Bid-0.1; TIF=DAY+; SELL=Send; DefShare=200; Price=StopPrice-Bid*3; Price=Bid-Price; SHORT EXIT CXL ALLSYMB; Route=STOP; StopType=RangeMKT; HighPrice=StopPrice; LowPrice=AvgCost+AvgCost-StopPrice; Share=1; TIF=DAY+; Buy=Send; TriggerOrder=RT:STOP StopType:RangeMKT LowPrice:Price HighPrice:AvgCost ACT:BUY QTY:POS TIF:DAY+; Hope this helps, Best, Russell Landwehr
-
2 pointsHi, most people here use DAS, including Carlos (I used to but don't anymore). If I was choosing one or the other then I'd choose DAS but Bookmap complicated matters for me. It depends what kind of trading you're doing, if you're a scalper like Andrew then DAS is better. The executions are better so those split seconds count as you're entering at the point of the market where you often expect it to go immediately. This is what DAS is going for, quick executions. IMO the executions in TWS are fine if you're looking for more point to point moves but aren't as quick as DAS. In terms of charting TWS is missing some features that DAS has that people here use such as highlighting bigger orders on Level 2. However, this isn't a strength of DAS either vs other providers (as I mentioned their focus is execution speed) for example things like volume profile is incorrect in DAS because they use a less data intensive method for the benefit of speed rather than do it accurately (I asked them to do it properly but they refused and said they don't intend to fix it). Therefore depending on what you're using you may be fine or you may have issues with charting (with both) which is obviously a difficult question to answer for a newer trader. DAS has replay which is also helpful for a new trader but BBT now has a free replay on trading terminal so it's not as big an issue now vs when I started. DAS hotkeys are more customizable, things like fixed risk hotkeys are missing in TWS. So DAS has the edge throughout but the reason I went to TWS from DAS is Bookmap, imo it helps tremendously read Time & Sales and Level 2 and my decisions as a result are much quicker (far outweighing the benefit of DAS execution speed for me, also should point out DAS was around 200-250ms delay for me vs I think 50-100ms for some NA traders because I'm based in Australia), many members here use bookmap. It's lacking education content in BBT at the moment (but I believe is coming) because Thor is the only mod who uses it and has just started. I'm using bookmap to chart in the shorter timeframe and make decisions. DAS therefore became a $200 a month (stocks and futures) platform just for execution and I don't see the value for the type of trading I do (not scalping). I only use TWS for a little bit of charting and execution really, I won't necessarily continue executing in TWS as it doesn't give me everything I want but doubt it would be DAS either. As I said most people here use DAS so I will say my opinion isn't the consensus opinion.
-
2 pointsIn this video AdventureDogLA shows us how to set up Risk Controls in DAS Trader Pro. Risk Controls enforce limitations such as maximum daily loss, maximum shares traded per day, etc. Risk Control Page is a safety net to keep in control our loses, either to have an external control over our behavior as traders or due to a contingency such as failures in the internet connection, electric power outages, broker failures, etc. You can find "Open Risk Control Page" in DAS Trader Pro Account window, just right-click in any row of that window and Risk Control Page will open as a popup browser window to let you update your risk control settings. Some considerations: 1. This configuration works with real accounts and simulator 2. You can deactivate settings "Risk Control Page" anytime by leaving all in blanks and clicking SUBMIT 3. When you are using DAS linked to IB, or simulator, the Risk Control settings are handled by DAS. DAS staff updates your settings manually (the form is emailed to them) anywhere from 2 to 30 minutes during business hours. 4. In LOSS fields, enter a positive number. 5. “No new order” avoids orders for the current day 6. “Pos Loss” = Position loss. 7. “Enable Auto Stop” will automatically close your positions when you hit the Max Loss / Total Loss. 8. “Max Share - Max auto stop execution share per day” = How many shares can be sold / bought by the Auto Stop mechanism. 9. “Max Auto Stop Order Size” = Maximum size per order made by the Auto Stop mechanism. 10.“Delay for next order if exceed max order size (sec)” = Time between orders if the Auto Stop needs to place multiple orders to close your positions. 11. “Stop Gain Account Net Realized PL Thresh“, “Drawdown Percent of Max Net PL“ , “Pos Stop Gain Thresh “ and “Drawdown” - Like Auto Stop but for gains. The threshold is the profit the Stop Gain is looking to hit, the Drawdown is how much it can drop from that target before your positions are closed. Example, you set a threshold of 2000 and drawdown of 20(%). When you make 2000 in P/L, the Stop Gain will trigger, and will close your positions if you drop 20% ($400) from that value, closing you out at $1600 Net P/L.
-
2 pointsHi 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)
-
2 pointsI shared my thoughts on the classic ABCD/Flag strategy. This pattern presents itself in virtually every move, across multiple timeframes. The formation consists of: 1. Run-up/sell-off 2. Profit taking/consolidation 3. Continuation Let me know your thoughts!
-
1 pointthis 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
-
1 pointHi guys, I've been working on a nice dark setup that works for me on InteractiveBrokers TWS platform including : 3 monitors for active trading ( screenshot and XML attached below ) 1 monitor for watchlist + spy + scanner + portfolio Tons of Hotkeys ! And I 've been working heavily to setup hotkeys using Andrews' methodology : Buy long at the Ask + 0.03 Sell short at the Bid - 0.03 I implemented this on IB TWS using a similar approach but using : Buy long at the Ask with limit buy + 0.03 Sell short at the Bid with limit sell - 0.03 (check the screenshots below ) Here are the main hotkeys : (screenshot and XML attached below) New orders generators : Ctrl + [ 1 .... 0 ] : LMT buy at ask limit + 0.03 >> from 100 shares to 1.000 shares Shift + [ 1 .... 0 ] : LMT sell at bid limit - 0.03 >> from 100 shares to 1.000 shares Orders general management : Ctrl + Q : cancel all orders and close full position at market price but you can exit position using the opposite order ( Buy for Shorting and Sell for Longing ) Ctrl + C : cancel all active or pending orders for active chart Ctrl + U : partial placement every X cents with Y exits Ctrl + Enter : submit / transmit / update changes Tab : Select next order (inside chart) Order price changes : Ctrl + Home : move 0.02 up the limit price of the selected order Ctrl + End :move 0.02 down the limit price of the selected order Order size changes : Ctrl + RePag : add 100 shares to the current selected order size Shift + RePag : add 20 shares to the current selected order size Ctrl + AvPag : substract 100 shares to current selected order size Shift + AvPag : substract 20 shares to current selected order size If you have NO position opened yet Right clic on chart + Buy : enter long with $11.000 (default position) at the price selected on the chart after second clic (LMT order) Right clic on chart + Sell : enter short with $11.000 (default position) at the price selected on the chart after second clic (LMT order) Ctrl + S : Stop sell with $11.000 position for a short position at the selected price below current price (if placed above current price will sell inmediately) Ctrl + B : Stop buy with $11.000 position for a long position at the selected price above current price (if placed below current price will sell inmediately) If you have a position already opened Right clic on chart + Buy : close short position with LMT order at the selected price on chart Right clic on chart + Sell : close long position with LMT order at the selected price on chart Ctrl + S : Stop Loss to close a long position at the selected price on chart (whole position) Shift + S : Stop Loss Limit ($0.10 range) to close a long position at the selected price on chart during premarket (whole position) Ctrl + B : Stop Loss to close a short position at the selected price on chart (whole position) Shift + B : Stop Loss Limit ($0.10 range) to close a short position at the selected price on chart during premarket (whole position) New AutoHotKeys Script : ** F4 : Histogram / Volume by price indicator F5 : Refresh chart information F6 : Draw an horizontal line F7 : Remove all the drawings and personal annotation from the chart F8 : Draw fibonacci lines F9 : (De)activate Chart Trader F10 : (De)activate Chart Trader on smaller charts (yes menús are different) F11 : (Un)show completed trades marks F12 : Show window name Youtube video (7m) with fast explanation and examples (spanish with subtitles) : https://youtu.be/1gflAufNMxI Youtube video (1h20m) for the spanish community in BBT (with subtitles) : https://youtu.be/DOSHys3WoRk To access chart hotkey setup : File menu > Global configuration > Charts > ChartTrader > Hotkeys To download this hotkeys and layout : Download the text file attached : tws.txt Change the extension to XML File menu > Layout / Settings Recovery > Custom > Select file Do not forget to save your current setup before for roll back if needed ** AutoHotKey is a Windows Software that provide a simple macro script language to write down any kind of macro process that can be done over and over again. This software is 100% free and independent from TWS, however I managed a way to use a script that will only activate the above function keys on TWS windows. The function will be launched in the window which is inmediately under the mouse pointer, so be sure that the mouse is where it should be if you don't want any other function on TWS to be launched. This Script is very straight foreward and it has some comments inside to let you know what can be done with the keys and menu functions. I personally hated using the context menu or the main manu of the chart and click 3 times just to draw a simple horizontal line, but TWS has no support to many many basic commonly used tasks AND I DECIDED TO WRITE MY OWN 😉 To add on top of it the new AutoHotKey Script : Download and install AutoHotKey 1.33 software from : https://www.autohotkey.com/ Download the Custom Script file for TWS at the end of this post : TWS-AutoHotKeys.txt Open it with some text editor like WordPad, Notepad or SublimeText and check line 30 to add you own TWS Account Number Change the extension to AHK After launching TWS on your Windows PC, double click on the Script icon (which I personally store in the desktop). Last updates : Oct, 25th 2024 - Added two YouTube videos with examples (in Spanish with subtitles) Aug, 29th 2020 - Fixed AutoHotKey macro script to avoid using the macros outside TWS Aug, 28th 2020 - Added base subscriptions screenshot for L1 or SIM Aug, 27th 2020 - Added new Setup file with hotkeys fix If you wanna add option chanin information activate this options detailed here : tws_2020ago.txt TWS-AutoHotKeyScript.txt
-
1 point
-
1 pointthanks i was just rewriting it yesterday to make it shorter and missed that. the reason why you cannot PM me here is that I got banned from PMs years ago as a prevention of not hunting in the BBT woods paranoia of a former BBT Mod Norm. Your PMs here are not P anyway - read the Terms of Use.
-
1 pointYou cannot have it on montage yet (being a chart indicator). Maybe I can ask to be able to name a button with a variable then you would see it on montage as a new button. this was possible for years as a chart window now you can have it like this or like this - the yellow lines or like this on a hotkey/hot button all explained here https://open.substack.com/pub/traderpeter/p/das-trader-advanced-hotkeys-part-c83?r=1wujo4&utm_campaign=post&utm_medium=web and here https://traderpeter.substack.com/p/das-advanced-hotkeys-part-4?r=1wujo4
-
1 pointhttps://open.substack.com/pub/traderpeter/p/das-advanced-hotkeys-part-4?r=1wujo4&utm_campaign=post&utm_medium=web&showWelcomeOnShare=true there you go @meatskin2000 @Yogi_theWanderingTrader
-
1 pointhttps://traderpeter.substack.com/p/das-trader-advanced-hotkeys-part?r=1wujo4 @Brandi
-
1 pointhttps://open.substack.com/pub/traderpeter/p/das-trader-advanced-hotkeys-part?r=1wujo4&utm_campaign=post&utm_medium=web&showWelcomeOnShare=true
-
1 pointFrom DAS support. Right click on your chart window > Chart area > Show trades Enable show orders To drag: Right click on your chart window > Chart area > Order entry and order line movement
-
1 pointHi, I would much appreciate if you could help creating a DAS hotkey for options trading? I'd want to buy a contract with the size based on criteria; - contract size: limited with a defined buying power ($2000) - Price entry: mid price - Attached a market stoploss: 85% of average cost Thank you so much for your help.
-
1 pointI use both, and from my experience, some orders do not get filled, and has a huge slippage on the stop market orders. Especially volatile stocks with wide spreads like nvda. You have to do the math, for the vol of shares I trade on nvda, the avg cost for the week using IB is around $60, about 250/mth. TD, free. But I do notice that I have bigger slippage, sometimes up to .30-40 on entries, and stops compared to IB. However, the overall performance on stocks that has slower moves, and tighter spreads, such as $aapl, not much of a difference. it is a toss up for now, but as you move into bigger shares, and volume, then you have to calculate if the slippage loss on a given stock is worth the commission free trades. For now, yes for me on nvda, since most of the time, I am looking for min. of 2-4 dollar move, and the .15-25 slippage in entries, are. usually 5-7.5 loss, but make up for it in the trade. Limit orders are decent, but market orders execution on TD is terrible. But as i said, I have never been able to accurately tell how much slippage, but some of the stop/market orders have slipped by .20-35 cents. If you have 100-200 shares, that's 35-70 dollars. Yes, I have seen such loss on a stop that is suppose to @b/e. However, Ib has some slippage on market orders, and stop/market. But it is usually .5-10 cents. Nominal. What I am thinking of doing is placing a bracket order .25-40 cents in front of my b/e limit order. The only danger about using a limit order, if it doesn't get filled, you can face a big loss. Stop market, you will get filled, but not at the price you have it placed, due to the slippage. so, yeah, one of those things that we deal with. I can't help but to think the mm and the brokers benefits from this somehow, but there is no way to prove it. I think they use micro pennies to make profits, but probably make a killing taking in the diff between a spread, and the slippage, if they can slip it in there. 🙂 Happy trading Everyone.
-
1 point
-
1 pointChapter 5 - Reinventing the Self: Creating a Trader's State of Mind This bundle of beliefs, perceptions & biases we call conversations in the mind are what determine how we trade. These elements must be brought into awareness, examined & reorganized. The key is to move from a belief system that is galvanized on not losing to a mindset that is focused on managing risk so that the probability of success is in your favor. Changing beliefs is not a mechanical process where you can take part off and add a new one...you have to grasp that you have to disrupt the biology of pattern or the old historical belief will reclaim perception - IE why diets fail - overeating is merely a symptom not the problem. Cannot focus on "not losing" rather on "maximizing profit" To master the market; you will have to master yourself. You cannot control the market, but you can learn to control yourself. As with the saying it is not what happens to us (as this is often out of our control), but how we react to what happens to us ....in trading it is not what the market throws at us, but how we can react to what we are being thrown... All emotions, including our most primitive emotion which is fear, have a particular breathing style attached to them. Most people hold their breath or start breathing faster... yogis & Buddists were able to reduce stress levels (even blood pressure & other measurable traits) through breathwork. This is the 1st step for the trader - the breath work. You can begin when you "notice" a change in breathing, but as you move further along as the "observer of self" you will get to know your triggers & can implement a bellow breathing framework to begin when you are about to engage on one of your triggers. IE - you hold your breath when you enter....if you know this - start breath work when getting ready to confirm entry and continue until "out of the weeds" with this trigger. Beliefs will also need work, but breath work is a very powerful step 1. If breath not managed under stress - air supply needed by brain is compromised and this leads to a fight/flight response. 80% of illness is related to stress. Vast amount of people (including traders) breath in a way that supports stress. Diaphragmatic/bellow breathing - rote training - 10 breath per session and keep increasing it... practice multiple times per day throughout the day - you will see results quickly...practice when trading so your brain starts building the habit, but also practice outside of trading. Safe Place - explain what it is and examples... utilize 5 senses
-
1 pointHey Miah, first thanks for creating the indicator. Was excited to see Thor's cam set up for TOS but after adding it -seems like the w/ and w/o doesn't switch and I don't have bubbles on cams. Could be me, any suggestions?
-
1 pointHola todos, mi alias es Troady, nombre real es Luis Arteaga, Cubano de origen, Norteamericano de nacionalidad despues de haber sido Holandes tambien por 18 años. Resido actualmente en Naples, Florida desde el 2004, donde me rompo la cabeza a diario dirigiendo una compañia de transportes que poseo con varios camiones de carretera. Soy graduado del Intituto tecnologico de Utrecht en hardware y software de computadores (clase del 87), aunque mi pasion hasta hace poco era manejar camiones y ir a lugares remotos, gracias a eso conozco varios continentes, cerca de 60 paises y hablo varios idiomas. He hecho algunos pinitos en Forex y Crypto, aunque sin resultados a destacar, llevo siguiendo stocks y Wall Street por algun tiempo y hace poco choque con el libro de Andrew Aziz "Day trading for a living" y me impresiono lo sincero, franco y explicativo del libro. Decidi contactar a alguien de la comunidad en Español y despues de hablar con Abiel, decidi unirme a la comunidad de traders. Aqui estamos, espero que por mucho tiempo y espero hacer buenas amistades dentro de la comunidad.
-
1 pointUPDATE: I got the stops! So I got a way to easily move your stops to break even while keeping your profit targets. This is something you would likely want to do when you are up 1r. One weird thing about it is that you need to double-click on the chart where your ORIGINAL stops are before hitting the hotkey (or where your stops were originally should you have removed them first). This is how it knows your profit targets. You can of course do this at any time at any place on the chart should you so desire. So I'm now just using Kyle's hotkeys that simply gives a stop where you clicked on the chart, and then if I intend to hold it longer, I just convert it to the range with b/e stops using the hotkeys below. I think it's the best of both worlds for short holds vs. long holds. Long: CXL ALLSYMB;Price=AvgCost2-Price;Route=Stop;StopType=Range;LowPrice=AvgCost2;HighPrice=AvgCost2+Price+Price;Share=POS*.25;Sell=Send;Route=Stop;StopType=Range;LowPrice=AvgCost2;HighPrice=AvgCost2+Price+Price+Price;Share=POS*.25;Sell=Send;Route=Stop;StopType=Range;LowPrice=AvgCost2;HighPrice=AvgCost2+Price+Price+Price+Price;Share=POS*.25;Sell=Send;Route=Stop;StopType=Market;StopPrice=AvgCost2;Share=POS*.25;Sell=Send Short: CXL ALLSYMB;Price=Price-AvgCost2;Route=Stop;StopType=Range;LowPrice=AvgCost2-Price-Price;HighPrice=AvgCost2;Share=POS*.25;Buy=Send;Route=Stop;StopType=Range;LowPrice=AvgCost2-Price-Price-Price;HighPrice=AvgCost2;Share=POS*.25;Buy=Send;Route=Stop;StopType=Range;LowPrice=AvgCost2-Price-Price-Price-Price;HighPrice=AvgCost2;Share=POS*.25;Buy=Send;Route=Stop;StopType=Market;StopPrice=AvgCost2;Share=POS*.25;Buy=Send Enjoy!
-
1 point@Paul aka Aurbano - My man! Just making the world a little bit better one piece of code at a time 🙂 Look at this original formatting of the tickers and how they get cut off: And now look at Paul's version:
-
1 pointI found consistency when I got rid of all my profit goals. I realize now I was trying too hard to reach a specific P&L and it was effecting my decisions. Now I try to focus 100% on making good decisions. I make notes on each trade as I take it throughout the day, so I can constantly monitor how I'm doing based on decision making. A good day is one where I make good decisions and manage my trades according to my rules. I haven't had a hulk day since I started doing this. I find Thor's mentoring sessions incredibly helpful. It was his suggestion to get rid of the profit goal and it worked for me. He often says don't lose more in a day than you can make back in a day or two. He couldn't be more right! I had a max loss day on Tuesday and made it back and then some on Wednesday. Everyone always says focus on the process not the profit. You just have to figure out your version of that. After watching Peter's SMART entry webinar I try to plan out my trades before I enter them so I have a plan for whatever the stock does. This allows me to stay calm and focused because I already know what I'm going to do. If I get my signal I enter, if not, I don't. Once I enter a trade, I've already planned my stop loss and profit targets, so all I have to do is follow my trade management rules. After doing this for a couple weeks I know I am in a good trade if I am calm. If I feel like the trade is "easy" then I know I'm prepared for it. The hardest part about this for me is missing setups because I didn't have enough time to prepare. Sometimes I impulsively enter the trade because I saw my signal, but my heart rate increases because I haven't planned the rest of my trade. I have been immediately stopping out of these trades, which more often than not seem to work out, but it's not worth the risk if I'm not calm and prepared. My best advice is don't worry about other people's timelines. Focus on your trades and your process. The hardest part for me is to be patient. I can see incremental improvement in my trading over time, but it is SO much slower than I want it to be. I see improvement in your graph. Take a step back and look at how far your come, realize it's going to take longer than you would like and keep working at it. Keep learning and improving every week. And try to stay positive! I have found that my best teacher is my own journal. I take the advice from the moderators here and apply it to my own trading. Your equity curve seems to be flattening out and it sounds like you know if you eliminate the hulk days things would be much better. Try to focus on making good decisions and reducing the bad ones. Also, keep in mind that as your equity curve starts moving up it's not going to be in a straight line.
-
1 pointI chatted with an IB representative who was very helpful. In short, it seems like there is nothing to worried about when it comes to the exchange rate. I don't think you have to convert everything to USD (or deposit in USD) either. Here is an example. If I have $1,000 CAD and $0 USD and I want to buy a $100 stock, then I am borrowing $100USD from IB. At this point, I have -$100 balance in USD. If I have a winning trade and now I sell the stock at $120, then I have a $20 profit. My USD account balance now will be $20. If I lose and sell the stock at $80, then now I have -$20 balance in USD. For -$20, I will have to pay some interest to IB or you can convert the amount from your CAD balance. As you can see, there is no place for the exchange rate to come in because I would be simply trading in borrowed USD, not CAD that is converted to USD. However, the exchange rate changes every day and when it comes to the total balance shown in USD it changes every day even if you don't trade at all. With the $1,000 CAD scenario, if the USD/CAD exchange rate is 0.8, then your balance in USD is $800, but if the rate drops to 0.78, then the balance will be $780. You would still have $1,000 Canadian. If the CAD value drops significantly, then the total value of your balance in USD drops significantly too and even if you win some trades (in USD), you may have less USD equivalent (as your base currency) at the end of the day than when you started trading in the morning. I think it is what happened to the OP. But I believe you would still have your original CAD balance in your account (plus the positive USD won in the trades).
-
1 pointThanks Paul. I did call DAS just now (702.943.1881) and they said I would have to pay double if I linked DAS to both CMEG and IB US simultaneously. Although you can link DAS to more than one IB US account simultaneously for no extra charge, that does not apply for different brokers. Also this question that I asked is premature as both the 14 day free trial and the 3 month BBT promotional discount for DAS do not use or require a broker.
-
1 pointHello 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.
-
1 pointHi Matt. Journaling your trades while in sim will help to build your habit to do it and to improve as you advance in your sim training, so when you start live your journaling skills will be developed and template will be tested, improved and ready. Before activating your DAS sim subscription make sure you: Watch all Classes and DAS Lessons in Education Center. read this forum post too. If you are a Lifetime Member watching Success Webinars and Psychology Webinars is advised. Ideally you should watch all the content in the Education Center and webinars. Take a look at this 12 week simulator program. You want to be familiar with everything in that program. Watch these DAS Trader Tutorials in youtube. Every week we add new videos. Prepare your trading plan and journal template. In the Downloads section of the website you will find a Trading Plan and Journal template https://bearbulltraders.com/lessons/trading-plan-template-2/ Download the BBT TradeBook from the Downloads section of the website. Review it and adjust it as needed. Use our Knowledge Base and Forums to search the questions you may have. If you search and don't find answers, ask here in the forums. When you are ready, download the DAS 14 days free trail and set it up as you prefer. After the 14 days you can activate your 3 months DAS subscription, keep using the same DAS installation you used for the trial. Best.
-
1 pointThis is a very common question, so hopefully this post can be a good reference. There is a new hotkey command called DuplicateWindow which lets you 'clone' an existing Montage, Time/Sales, or Chart window. All settings like hotkey buttons, colors, fonts, etc. will be copied over. How to: -Go to menu Setup > Hot key -Add New Item -Enter a Name and Hot Key. In the Script Field, enter DuplicateWindow -Press Commit Now you can simply select the window you wish to duplicate, then press the hotkey (CTRL+D in the above example). And voila, attack of the clones!
-
1 pointYou should 100% look into Kyle's hotkeys. It will automatically calculate how many shares to take based on your equity and how much you want to risk, it will enter a position and it will place a stop loss all with one hotkey. It will make your life a lot easier.
-
1 pointAh, because the instructions I posted are only for setting a stop loss. It's for if you are already long in a position. If you're already long, and you bought 100 shares of stock xyz, and you want to set a stop loss. You need that stop loss to sell those 100 shares back to get out of your position. Although, are you actually asking how to set up a stop loss at the same as going long or short?
-
1 pointI know my Streamdeck layout by heart and can trade without looking at it, but it comes down to personal preference. Andrew uses hotkeys. I like being able to have a visual fallback and to have a ton of hotkey combinations for various things, without having to memorize it. It has cut down my hotkey "errors" that I used to get. I probably have around 100 different DAS hotkeys, trying to memorize that would be a nightmare. I'd say StreamDeck has an advantage when it comes to traveling if you don't trade on the same keyboard, as it's smaller and easier to travel with, thus allowing you to keep the feedback exactly the same no-matter where you are (e.g. switching from desktop keyboard to laptop keyboard can be like relearning the hotkeys).
-
1 pointFound another way! This makes it easy to do if you would like to open the same montage in a different tab. Right click on the header of the Montage and click SAVE AS DEFAULT. Open a montage in a new tab, right click the header again and click LOAD DEFAULT. You will have loaded the montage from your original tab then you can duplicate as much as you want. This also works with charts!!!
-
1 pointPerfect, I read this right after spending half an hour creating 4 Montage windows and manually adding all the hotkeys and changing LVL 2 shading haha
-
1 pointHi all, Having a journal is a must. I feel like I have learned so much about my trading in just the 2 weeks trading live because of this journal. For anyone starting out like me, if you are serious about this business, take the time to have a detailed journal. How else can we improve something we are not tracking? I focus more on the details of the trade and what I was thinking at the time, IB has tons of report performance reports that I can pull later if I want to see the numbers crunched. Here is a screenshot and detail of my journal, I have 3 main sections on my recap: Screenshot Link: Click Here Section 1: In this section I record how I feel Physically and Mentally in the morning before I start my trading day. Comment if I was able to get my morning routine done as planned. (My mourning routine is gym, sauna, get to my station and write my Journal Intro, review previous day recap, then build watchlist) Section 2: Here I add a screenshot of my Das Trader Account Report, with the me a summary of what I traded for the day. At the bottom of the page I also have additional screenshots of the detail transactions. Section 3: In this section I track some information of the stock like float size and how I found the stock. I also note down details of the trade like the strategy, position size and details of the price action shown on the screenshot. The best part about this section is the “Well Done" and "Improvement Notes”. I read on “The Daily Trading Coach: 101 Lessons for Becoming Your Own Trading Psychologist” how important it is to track what you did well on a trade. This way your recap is not all negative but also highlighting the good things that you should continue to do. Software: Just some information on the software I use, I track my Journal on Microsoft OneNote. As you can see on the pages tab I track all my Trading stuff like highlights of the book I am reading and any training course notes. If you have not try this software please give it a shot. It has a lot of great features, syncs with all devices and is completely free. Thanks. Carlos M.
-
1 pointIt's called an Elgato Streamdeck. Here is a link to the Icon set I made for my station.
