Jump to content

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 all areas

  1. 3 points
    Hello 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.
  2. 3 points
    To 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
  3. 2 points
    Updated: 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
  4. 2 points
    DAS 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
  5. 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
  6. 2 points
    Hello, 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
  7. 2 points
    Hey 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.
  8. 2 points
    I will be there! Looking forward to meeting you guys.
  9. 2 points
    We can now process orders anytime, just like if we did it manually. All the details here.
  10. 2 points
    I 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.
  11. 2 points
    Hey 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! 😃
  12. 2 points
    I'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/
  13. 2 points
    Certainly, 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!
  14. 2 points
    https://drive.google.com/file/d/19IWyAmJcFg4x05KFu6pxzMbUKx6wmAvX/view?pli=1
  15. 2 points
    Just 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
  16. 2 points
    Okay, 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
  17. 2 points
    Hi, 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.
  18. 2 points
    In 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.
  19. 2 points
    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)
  20. 2 points
    I 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!
  21. 1 point
    i'm trying out Ai as my mentor. Here was my starting prompt: Help me and guide me to being a 5 figure per day, day trader. i want you to act as my day trading mentor. DeepSearch the web if necessary. i will upload my daily notes, my trades and a copy of my own rules for myself for your reference. please analyze. ask me any questions you have for clarification. i will also upload a book for you to reference. i'm going to upload four pieces of information total 95 jpg notes 55 jpg trades (Jan 13 thru April 10) pdf book my rules tell me what you want first to get started. Anyone interested in seeing a follow-up post?
  22. 1 point
    U have opened my eyes to additional AI functionality......really appreciate the info......will contain to observe. maybe when complete we can jump on a zoom (i can host) call and u walk through the process on .........really want to learn more.
  23. 1 point
    just go here and do not forget to read this as well as there are some requirements to be set in the settings too
  24. 1 point
    EDIT: it looks like everyone who was planning to join replied, but just in case, we are meeting at Cactus Bellevue Square - 535 Bellevue Square, Bellevue, WA 98004. Seattle is craziness today!!! Hi BBT! A few of us are planning to meet in Seattle on evening of 7/21 to meet, chat, talk trading. If you are in the area and would like to join, let us know! Feel free to msg me at (808) 386-5922, and I'll add you to our Whatsapp group (if you'd like).
  25. 1 point
    Hello, my name is Lumir, and I am a Cloud Storage Engineer from the heart of Europe, the good old Czech Republic. Trading has always fascinated me, but I just never got into it—until now, that is. Of course, I finished Andrew's book on day trading and am currently learning all the pieces and possible strategies while watching other people trade. This week, I have 40+ hours in the simulator, slowly building up my skills and testing things. It's been so much fun to learn something so awesome and possibly life-changing. What could help me is that I played poker for a living for a couple of years, so I can calculate risk and profit quite fast, it seems. Anyways, I look forward to working with this community. If you'd like to do a meetup in Prague, it's an amazing city.
  26. 1 point
    📉+$1022 TSLA Breakdown from Previous Day High, AMD/NVDA VWAP Breakouts🚀 Trade Date: 7/5/24 TSLA, gapped up and extended on the daily, saw a rejection of R1/R2 and was testing previous day high. I shorted at the break of PDH to S1/PDC and all out at S2 before the bounce. AMD, gapped up on the daily and ran from the gates. Sold off hard to R5/R6/Pre-Market High but bounced back to the trend lines on the 1 min. I went for a hold of trend and VWAP breakout, initial small size, then added as we held trend and were making higher lows. There were no cam levels to partial at and used HOD and pure momentum to exit. This was a hard trade to gauge however QQQ was breaking out. NVDA, rejected R2/PDC early but was holding VWAP. Went long for a scalp to R1/PDC. The 5-min chart was ugly and I did not feel confident holding this beyond momentum thrusts to liquidity pools. Thought we would test PDC again but we were rejecting and exited at B/E before the selloff! #TSLA #TESLA #AMD #NVDA #NVIDIA #VWAPBreakout #LODBreak
  27. 1 point
    Hi Gideon, I am also a UK day trader. Have been investing in stocks for 4 years but only now just looking into day trading. I set up my IB account yesterday and my journelling account today. I think we have a benefit to trading from the UK as our trading day starts at 1.30pm so not too early!
  28. 1 point
    Hi All, I am also in the Seattle area (Bainbridge Island) and was at the Vancouver Summit. I would love to connect with other traders in the area! Sophie
  29. 1 point
    Hi guys, I recently joined BBT and I am in Seattle area. I am looking for a trading pod and create an accountability group like Viktoriya mentioned. If you guys are meeting up/sharing daily trades etc., it would be great if I can join.
  30. 1 point
    Andrew mentioned a morning hike, but we´ll finalize details soon and will post them here.
  31. 1 point
    Chapter 6 - Mindfulness - Awakening the Observer of the Self An unexamined life is an unlived life. Bc it causes momentary discomfort, you & a multitude of others avoid looking deeper - beyond the surface of our thoughts & identity. Rande continues on to tell us to become successful as traders we have to look beyond the surface. for me; the concept of becoming the observer has been a great learning experience. Realizing that I am not my thoughts and I can let thoughts just pass by without becoming swept away with them produced a humble power within… it takes time & dedicated practice to become a mindful, disciplined person & traders. This is the road I’m on… I am humbly proud of the progress I’ve made, but know I’m not at self mastery which is my ultimate goal. I think it’s a goal you work at forever. I do think some can be considered “self masters” but I believe this means they have the ability to choose long term goals over short term rewards/impulses. They have examined and continually create their thoughts/lives/etc.
  32. 1 point
    Hi Miah, Thank you for posting this. I'm not sure what I'm doing wrong but depending on the ticker, I sometimes see the cam price bubbles and sometimes don't. I am using a 5 day 5 min chart and the only thing I'm changing is the ticker. In your study, I located bubbles at “Time” and left the default time location at 600. Below are a few screen shots of different tickers and you can see that some show the bubbles for each day while others only show the bubbles on certain days. I get the same results with different zoom levels on the same chart. If I change to a different time period, I get different results regarding when the bubbles show or not. Is there something that I need to change to make this work? Thank you,
  33. 1 point
    (2) Fear of Loss (Pulling the Trigger) This comes out when I jump out too quickly - prior to my stop AND before the move happens because I did not want to lose. I think this fear also goes hand in hand with the fear of being wrong / not right. (6) Fear of Self Sabotage (blowing yourself up) Comes out when I hit a green streak and feel like I've really got this. (7) Fear of Missing Out (Greed) I experience this when I get into a move anticipating the setup. I would argue that greed does not accurately describe this fear - it's more scarcity.
  34. 1 point
    Hey Alex, I'm Jordan and I would love to show you a different way. I have no idea how much money that you make, but I just want to let you know that it adds up. It's not a get rich quick scheme, but I have read all of the books that you read and some of them really make you think. Let me know what you think.
  35. 1 point
    Test in simulator and adjust as needed: Buy ROUTE=SMRTL; Share=100; Price=Ask+0.10;TIF=DAY+;BUY=Send; Sell Partial 25% CXL ALLSYMB; Share=Pos*0.25;ROUTE=SMRTM;TIF=DAY+;SELL=Send;TriggerOrder=RT:STOP STOPTYPE:MARKET STOPPRICE:AvgCost PX:AVGCOST ACT:SELL QTY:POS TIF:DAY+ Sell (or short) ROUTE=SMRTL; Share=100; Price=Bid-0.10;TIF=DAY+;SELL=Send; Cover 25% (or buy)} CXL ALLSYMB; Share=Pos*0.25;ROUTE=SMRTM;TIF=DAY+;BUY=Send;TriggerOrder=RT:STOP STOPTYPE:MARKET STOPPRICE:AvgCost PX:AVGCOST ACT:BUY QTY:POS TIF:DAY+ Exit at Break Even CXL ALLSYMB;ROUTE=STOP;Price=AvgCost;StopType=MARKET;STOPPRICE=AvgCost;StopPrice=Round2;Share=Pos;TIF=DAY+;Send=Reverse;ROUTE=MARKET;
  36. 1 point
    Yes I use leverage but my rules are around trade size rather than using a certain amount of leverage. For example (not my real numbers), if I want my stop size on TSLA to be 50c and I want to risk $100 on my trade then I want 200 shares, regardless of whether that means I'm using no leverage or all my leverage that's the trade I want to take. Of course with margin you can get yourself in serious issues if you don't trade properly and abide by your stops but that's for each individual to assess their own risk of not doing that (and if you can't then trading is probably not the right career).
  37. 1 point
    It is said ( from the trading books and experienced trading mentors) that it is better to stick with just one ( or at most two ) strategy for either day trading or swing trading. The advantages include: - by focusing on one strategy, you can better ( easier ) find out the accuracy and profit/loss ratio of your strategy; by a number of testing. - there are all kinds of entry points / setups during the day in the market, by " filtering out " the various opportunities and narrow down to just one type of setups ( entry points ) , you are easier to react to price actions that keep moving and changing, and your emotion will be more stable and easier to control and be calm. It is said that " do not attempt to catch all opportunities in the market " & " Less is more". Hope it helps.
  38. 1 point
    Many new traders struggle to learn level 2. This was a challenge for me as well. Its WAS like kryptonite, .....................No more. (Read full thread for knowledge). The Bookmap education series teaches how to use the trading tool BUT also it teaches you the mechanisms of the market and how to read in bookmap L2 which can easily be translated into the DAS montague and Time & Sales. In my opinion the Bookmap education series is a MUST for any trader. Start with the link below. As u watch the video remember the following two points: 1. MARKET ORDERS move the market (aka aggressive orders the balls) 2. only LIMIT orders (aka passive orders) are shown in the book of an exchange(Pools of liquidity). Price generally moves to LARGE pools of liquidity, i.e. LIMIT orders. WARNING: The ease of use is unbelievable, u will be tempted to buy. (Watch more on YouTube channel.).......then submit to ur temptations. SUGGESTION ON HOW TO WATCH PRICE--- As PRICE approaches a level focus ur eye on the T&S window initially, top line, (eyes should move from T&S to L2 in montage back to candles, then to T&S) and watch the price and size of the BID/ASK. This tells you exactly wht will happen in the next few seconds and the potential start or failure of a move/swing. This indicator only tells you the start, does not allow u to read if it will continue. (Tht is for another post/thread soon.........).
  39. 1 point
    Hola, amigos, creo que no me había presentado, aunque ya llevo rato aquí. Mi nombre es Josué De Lara, soy de México donde vivo actualmente, aunque la mayor parte de mi vida la he pasado en Texas donde estudie desde la preparatoria hasta el doctorado. Me interese en el “daytrading” gracias al libro de Andrew, me fascino. Me gustaría mejorar en el daytrading con el propósito de mejorar mis ingresos, ya que en Latinoamérica no son muy buenos aún con grados académicos avanzados. Hice una hoja de calculo para calcular la cantidad de acciones a comprar de acuerdo con la emisora. Me es útil ya que utilizo TWS en vez de DAS y no puedo usar las “hotkeys” de Kyle. Espero le sea útil a alguno de ustedes. https://docs.google.com/spreadsheets/d/1ElLZ2h41da1xgtz6KI_Df0PeqP754kRMDhJe60aefL4/edit?usp=sharing
  40. 1 point
    Ever wanted to swap line styles on the fly and make a rainbow on your chart? You can do that in 5.5.0.0+. The hotkey isn't the easiest to understand, so I very quickly made a web utility for you (link below). How to Use: Go to URL: http://kaelmedia.com/projects/das-line-config/ Select a Line Type, default is HorzLine Select a Line Style, default is SolidLine Select a Color, default is Barney Select a Width, default is 1 Hit "Generate" Glance at the preview window and see if it is what you wanted. If it is, hit the "Copy" button and it'll be placed in your computers Clipboard. If you wish to share you creation, press the "Share" button and a special link will be placed on your clipboard to post in the forums. Example: http://kaelmedia.com/projects/das-line-config/?hotkey=ConfigTrendLine horzline dotline:035aab:1; Paste the copied hotkey (looks like: ConfigTrendLine horzline dotline:035aab:1; ) into your DAS Hotkey Configuration. Optionally, bookmark or save the line so you can edit it in the future (it adds the settings to the browsers URI/URL). How the Hotkey Works: The hotkey as designed will swap the DEFAULT config for the Line Type chosen, each type has one default stored for the user. So if trigger a hotkey with a horizontal line with a blue color, your very next (and all following lines) horizontal line you trigger on the chart will be that configuration (blue). Because of this, I have a "default line" hotkey and a series of colored hotkeys, this allows me to toggle back and fourth. Advanced Uses: Go HERE.
  41. 1 point
    Hey, I opened up a personal account since I'm trading (and filing taxes) under an individual (non-business). In your case, I would assume you open up as a professional if you are trading under a business entity. However, I would double check with IB to see what their definition of "professional" because it can be confused with a "pro" trader (IE. insider, director, spouse of insider, etc...) Currently, I'm trading as under "personal" and plan to file taxes under self-employed (if I make money LOL). This is because it's the simplest way so far. Once I get consistent and profitable with my trading, I'll eventually incorporate and file taxes as a corporation. The main benefits to doing so would be limited liability and decrease taxes. Some disadvantages would be cost and complexity for accounting (book keeping and tax reporting). I plan to do all the bookkeeping and tax reporting myself as I really don't trust accountants especially for the cost to pay them. In general, there are 3 ways to file day trading taxes as a Canadian: 1) Self employment 2)Business Income 3) Corporation **Also this is not to be confused with swing trading or investing as you can utilize a TFSA account for tax benefits. I'm talking strictly day trading.** Check out these resources for the details: https://bearbulltraders.com/course/technology-monday/lesson/broker-trading-platform-tax-services/topic/managing-taxes-for-canadians/
  42. 1 point
    Hello, Following hotkey is Kyle's for dynamic risk based off your stop-loss and entry: StopPrice=Price-0;DefShare=BP*0.925;Price=Ask-Price+0.00;SShare=50/Price;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;Sshare=DefShare-SShare;Share=0.5*SShare;TogSShare;ROUTE=SMRTL;Price= Ask+0.05;TIF=DAY+;BUY=Send;DefShare=200;TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice-0.05 ACT:SELL STOPPRICE:StopPrice QTY:Pos TIF:DAY+; This is my edited version: StopPrice=Price-0;DefShare=BP*0.925;Price=Ask-Price+0.00;SShare=280/Price;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;Sshare=DefShare-SShare;Share=0.5*SShare;TogSShare;ROUTE=SMRTM;Price= Ask+0.00;TIF=DAY;BUY=Send;DefShare=200;TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice-0.05 ACT:SELL STOPPRICE:StopPrice QTY:Pos TIF:DAY; It is modified slightly with Ask+0.00 instead of Ask+0.05, and DAY instead of DAY+. Today I took a trade on SPI with a .20 stop-loss, risking $280. So 280/.20=1400 shares, but I was only bought in with 233 shares. Any ideas why that might be would be appreciated, this has happened a couple times now, seemingly randomly. Cheers, RR
  43. 1 point
    i have observed similar issue stated above . Could it be related to the dasTraderPro IB version ?
  44. 1 point
    Saludos a todos ! Soy Pablo, conocido también como Aurbano en el chat ... y aquí estoy desde hace más de 1 año tratando de ayudar un poco con lo poco que he aprendido a base de pelearme con la plataforma jejeje Soy Español, y durante 20 años me he dedicado al mundo de la consultoría técnica y consultoría de negocio.... acabando en el trading como una nueva forma de vida. Un saludo a todos compañeros ! Pablo
  45. 1 point
    100% make sure your funds are in USD. I simply deposit in USD, so there is no conversion necessary on IBs side. They receive it in USD, you trade in USD, there are no fees, and when I pull my money out it just goes straight into my US Dollar savings account in my bank (RBC).
  46. 1 point
    I am using a streamdeck XL. Thanks to Kyle for the ICONS and DAS scripts. I can now focus on process, trading well and less calculating. I am testing in SIM, and I may need to separate the LONG MENU and SHORT MENU to different profiles.
  47. 1 point
    Hi Kelly, You do not have to pay for both, when you get Das Trader Pro with IB or any other broker. It comes with a demo account as well. That is included in your monthly fee, you will only be paying $150. It is also very easy to switch from Live to Demo with Das Trader Pro. There is one login only but once you log in you have several options to switch from Real and Sim, you can do it manually on the montage, you can define it by hotkeys or you can change the overall global setting to Real or Sim. This post has more information on how to switch between sim and real. Hope this helps. Thanks.
  48. 1 point
    TWS is terrible at letting you personalize the appearance of things. It's a real nightmare to deal with colors. I tried to put it in white too but it's just nowhere as clean as DAS or TradingView lets you do it. Also, I've never seen a Times & Sales so useless... can't get the text to be in color like in DAS. I'm really considering the switch to DAS but I'm afraid I'll miss some stuff like the fact that I can place trades directly on the chart with a shortcut and a mouse click.
  49. 1 point
    Norm, this one's for you! Ok, here's mine... cobbled together from 2 older machines and a discarded large monitor...but notice all that empty space on the wall? That's where my husband is going to hang a 50" tv if I make my number. I mostly swing trade, so this set up isn't a hindrance currently, but as I develop my day trading skills, this will clearly not work. For those who may wonder about 2 laptops, I am trading 2 different accounts and for the way my brain is wired, this keeps me from getting confused.
  50. 1 point
    Hello Everyone, I wanted to start a post for anyone planning to go live in November, or who has recently gone live in the past 30 days. I feel that sharing our trading experiences with others who are in the same place in their trading journey can be extremely helpful. After reading Andrew's books, listening to the classes, psychology rants by Robert, and lifetime webinars, I believe stating your goals, risk controls, and allowing yourself to be held accountable is vital to getting through the learning curve without completely blowing up your account. So in an effort to hold myself accountable, below is my plan for the 1st month along with the goals and risk controls to help me get through it. Live Date – November 5, 2018. I can’t trade November 1 or 2. Share Size – 100 Daily Goal – $20 (1/5 of my planned daily goal once I make it through the learning curve). Daily Max loss – $60 ($20 per trade) Goals for the Month 1 1. Do not blow up my account 2. Have a 2:1 ratio at the end of the month with average winning trade versus average losing trade 3. Have above a 60% average win rate 4. Daily goal is a metric to measure profit taking plan efficiency, not an amount to hit every day Risk Controls in Place for Month 1 1. Max loss: 100 2. Max Shares traded in a day: 800 Trading Methodology for Share Size Increase/Decrease 1. Increase share size by 50 shares every time I trade 5 consecutive days green 2. Decrease share size by 50 shares every time I trade 3 consecutive days red 3. After 3 consecutive days red, return to sim until 3 consecutive days green 4. If max loss is hit for any reason other than internet connectivity issues return to sim for the remainder of the month. 5. If max shares reached, return to sim for the remainder of the week. Looking forward to beginning the journey of live trading and tackling the infamous learning curve with some other traders. It would be great to see who else is going live and develop a support group. Thank you!
[[Template core/front/global/mobileNavigation is throwing an error. This theme may be out of date. Run the support tool in the AdminCP to restore the default theme.]]

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.