Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation since 09/19/2019 in all areas

  1. 30 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
  2. 23 points
    5-Minute Opening Range Breakout (ORB) 5_MIN_ORB.pdf High of Day Break / Low of Day Break HOD_LOD_Breaks.pdf VWAP Reversal VWAP_Reversal.pdf Mountain Pass Mountain_Pass.pdf 1-Minute Opening Range Breakout (ORB) 1_MIN_ORB.pdf Rising Devil Rising_Devil.pdf Falling Angel Falling_Angel.pdf Parabolic Reversal Parabolic_Reversal.pdf
  3. 19 points
    TL;DR: Here are some sheets with concise information about strategies members of BBT use. Shoutout to the mods and contributors for the information for these strategies. After watching Peter's amazing presentation about his 'Mountain Pass' strategy a couple nights ago, I put together an information sheet with the setup details similar to ones I had already created for a few other strategies. After putting together the Mountain Pass sheet, I decided it, among the others could be useful for my fellow BBT community members for any of the following reasons: You could use them for your playbook. If you like the layout, you could use them as a template to make your own information sheets/playbook. They could serve as a tangible, concise, introductory resource for beginner traders, who are new to these strategies. The strategy information has all been taken from the education center, success webinars and Andrew's books. I take no credit for any of the theory behind the strategies or any of the images. All credit goes to Andrew, Carlos, Peter and Hiltzy for laying out the strategies so well. I plan on doing more of these as I expand my playbook to include strategies such as Rising Devil, Fallen Angel, 1-Minute ORB, etc. So I will share those in this thread as they are made. If you have any comments, criticisms, or if I have information wrong about any of the strategies, let me know and I can make some adjustments to the sheets. Also, if you have your own playbooks / strategy resources you'd like to share, you can do so in this thread, I'd love to see what you've done. Note: Some of the information, particularly the rules such as "Place stop losses at technical levels." are notes I've made to myself based on results I have found. Some of these may not apply to you individually. Here is what they look like: The files for each strategy will be posted below.
  4. 16 points
    Since everybody has different levels of experience with the stock market, it is difficult to have a one-size-fits all objective list. I am going to try to cover all the areas that you should have a firm grasp of by the end of the 3-months. It is a rough outline of what I have learned after 4 months of paper/real trading. This post will be a work in progress, but here goes. ~IN PROGRESS~ Day Trading is probably the most deceiving profession on the planet. On the surface the concept seems very simple: buy low and sell high. Then why is it that 90% of traders fail at his endeavour? Surely they aren't trying to do the exact opposite of what is profitable. Even flipping a coin has better odds at 50%. Let's take a look under the hood to see what is required to be a successful trader. CLASSES There are four classes in total. Each one runs about 1 hour, except for class 4 which is almost 2 hours. It is recommended that you attend the classes multiple times to reinforce your knowledge, refresh the concepts, as well as stay updated on any new material. It is your responsibility to go over the slides and understand what is being taught. If you have any questions, please ask them during class, in the forums, or in the chat. The community is always here to lend a hand. You should also bookmark the Bear Bull Traders FAQ and DAS Trader Pro FAQ. Some members choose to read additional day trading books, as well as practice trading replayed market data. What you get out of the course is directly related to how much effort you put in. In a sense, the entire 3-months is more of a self-paced learning program than a structured course. There are no quizzes, no tests, no projects and no scoring. It is up to you to wake up every morning and spend time in the chair mastering the trade. Nobody will hold your hand, watch over your shoulder, or monitor your performance in any way. That is how day trading is in real life: absolute freedom to stake your fortune or self-destruct and implode. STOCK MARKET BASICS -Warren Buffet once said 'The stock market is a device for transferring money from the impatient to the patient.' This is true for long term investing and for day trading. Remember that for each transaction you see in the Time/Sales window, there is a buyer and seller. When a stock is down 20% on the day and you short it, somebody is on the other side of that transaction buying. You don't know their hand though. They could be covering their short from earlier, it could be institutions loading up for long term investment, somebody hedging an options contract, etc. Beginners often gloss over this point. Volume represents transactions being filled; a transaction always involves two parties. You are trading against other people, not the market itself. -Exchanges: NYSE, NASDAQ, AMEX -Market Makers -Pre-market and after-hours -High Frequency Trading (HFT), algorithms -Bid, Ask, Spreads -Short-selling. What does it mean. -Short inventory. Why are some stocks shortable and others not -Short Sale Restriction (SSR) -Short interest, or Short Ratio -Share float -5-cent tick programs -Circuit Breaker Halts -News, earnings, and catalysts -Buyouts -Pattern Day Trade Rule >>> Make sure you understand the above prerequisites before proceeding any further. Investopedia is a great resource. CHARTS -Candle Sticks. How to read them. -Understanding Price Action. Bearish vs bullish candles. Indecision candles. -Higher highs and higher lows / Lower highs and lowers lows -1-minute vs 5-minute chart -Moving averages and how they are calculated in different timeframes -VWAP. Why it's an important intraday indicator >>> The above concepts are not tool-specific and apply to all trading platforms MECHANICAL ASPECTS -Knowing your tools (DAS) -Platform, Hotkeys, Scanners, Journaling -Order entry. Limit, market, marketable limit, stops -Level 2 -Calculating commissions and tickets >>> The goal is to familiarize yourself with DAS and be comfortable using it. For some this could take days. For others this requires weeks. TECHNICAL AND STRATEGIES -Finding Stocks in Play -Good vs. bad pre-market price action -Finding Support/Resistance Levels -Day trading Strategies. Master recognizing the patterns, entries, stops, targets. -ABCD / Reverse ABCD -Bull Flag Momentum / Bear Flag -Fallen Angel -VWAP False Break Out -VWAP Reversal -VWAP Trend Trade -Opening Range Breakup / Opening Range Breakdown -Red-to-Green / Green-to-Red -Moving Average Trend Trade -Top Reversal / Bottom Reversal -Time of Day: Open, Late Morning, Midday to Close >>> Everybody will pick this up at a different pace--learning to recognize different strategies, figuring out which one works best for you (at what time of day), etc. MANAGING YOUR ACCOUNT -Risk Management -Position Sizing -Money Management PRACTICE THE PROCESS OF EXECUTING A GOOD TRADE Putting on a trade is more than buying at point A and selling at point B. You need to combine everything you learned to get in and out of a single trade properly: 1) finding good stocks in play 2) identifying chop and staying away 3) identifying the strategy or setup 4) quickly calculating risk-to-reward 5) getting a good entry and avoid chasing/jumping the gun 6) managing the trade based on live price action and new information which the market is providing you 7) taking profit (often overlooked, yet it involves half of the entire trade) 8) you need to do all of the above while keeping your emotions in check and fighting your psychological demons >>> Over the 3-month period, you will repeat this process hundreds of times. This is where the bulk of your time will be spent. Learning to take good trades and improving on your mistakes. This is the only path to consistency. Don't waste time trading unrealistic sizes on low-float stocks because you won't learn a thing. >>>Some of your trades will turn out to be winners, some will turn out to be losers. Most likely you will have a few trades that blow up your practice account (but don't worry, you weren't taking things seriously and would never do it live, right?). GOING LIVE -Choosing a broker -Starting small and gradual position sizing -Returning to Simulator -Peer-to-peer support PSYCHOLOGY OF TRADING -Why do most traders fail here -I'm highly intelligent, analytical and very disciplined. Why this will ruin your trading. -I'm a good poker player. Good--you will be playing against yourself -Revenge -Overtrading -Fear of missing out (FOMO) -Fear of pulling the trigger -Trading scared -Averaging down -Turning a day trade into a swing trade ~IN PROGRESS~
  5. 13 points
    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.
  6. 11 points
    until
    Hey Everyone! I'm going to be in NYC for my 40th Birthday. I was thinking about a little get together on the 3rd. We are Meeting up with @Andrew Aziz, @Carlos M., @Mike B, and Myself. Location is going to be the "Three Monkeys Bar" one W 54th St. We have an entire floor and outdoor patio with a private cash bar and food. Hope to see you there. Please RSVP by commenting below so I can get a head count. Thanks! Thor
  7. 11 points
    Hi folks, here is a copy of the playbook template I discussed in the Feb 14 recap. The file is obviously a sample meant for each individual trader to complete with their own strategies, patterns, and setups. https://drive.google.com/a/bearbulltraders.com/file/d/1bmu3XzT_KtzTfya2Fo7Uqc7DZG_N7q-B/view?usp=sharing Please download a local copy as .xlsx
  8. 9 points
    Purpose: Provide a overview of the markets by using different instruments and evaluating prior activity. Use overview to understand market directionality, strength/weakness, and driving factors. Focus on areas with most potential. Outline: My process involves reviewing what the markets did last week using the Index ETFs, Index, and Futures in order to understand the day structure and market profile from the prior session. I will often mark areas of consolidation and volume acceptance as levels of interest to carry forward outside of daily levels and trends. Once an overview of the market products is assessed, I like to quickly scan the SPDR Sector ETFs for any obvious standouts relative to the current SPY Percentage Change. This is normally done close to Market Open around 9:00 - 9:15 ET. I like to have a list of candidate stocks that are good representative names for any sectors that are 'in play' relative to the markets. For example, if Energy stocks are moving independent of the markets, I would want to find a good Energy stock that has high Relative Volume and Percentage Change to trade 'the best of the best'. Instruments: Index Products: $SPY/SPX/ES Futures $QQQ/NDX/NQ Futures $IWM/RUT Index/RTY Futures Sector Products: $XBI - BioTech $XHB - Home Builders $XLB - Materials $XLC - Communications $XLE - Energy $XLF - Financials $XLI - Industrials $XLK - Technology $XLP - Consumer Staples $XLRE - Real Estate $XLU - Utilities $XLV -Health Care $XLY - Consumer Discretionary $XME - Metals Other Products: Bonds: $TLT & /ZB and /ZN Futures Oil: /CL Futures Natural Gas: /NG Futures Gold: $GLD & /GC Futures Silver: /SI Futures Volatility: VIX Index & /VX Futures Dollar: $DXY US Dollar Index
  9. 9 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!
  10. 8 points
    I have been working today on 2 hotkeys for myself. The script(s) uses the defined R/R script from previous Kyles hotkeys. It performs the following: Cancels any previous orders for the symbol Enters the trade, ensuring total shares bought is equally divisible by 4 (rounded down); this prevents having extra shares hanging around after the range trades complete or stop out. Creates a range order at your stop level for 1/4 of your initial shares bought with a profit level of 2R Creates a range order at your stop level for 1/4 of your initial shares bought with a profit level of 3R Creates a range order at your stop level for 1/4 of your initial shares bought with a profit level of 4R Creates a single order at your stop for the remaining 1/4 shares; This allows you to ride the last 1/4 to whatever level you want before exiting As with Kyles hot key scripts, you double click your chart at the level you want to place your stop then press your button or hot key The Script for the long entry CXL ALLSYMB; StopPrice=Price-0.01;DefShare=BP*0.5;Share=DefShare*0.333*Price*0.01;Price=Ask-Price+0.01;SShare=Share/Price;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;Sshare=DefShare-SShare;Share=0.5*SShare;Share=Share/4;Share=Share*4;TogSShare;ROUTE=SMRTL;Price= Ask+0.05;TIF=DAY+;BUY=Send;DefShare=1000;Price=Ask-StopPrice*2+Ask;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:StopPrice HighPrice:Price ACT:SELL QTY:POS*.25 TIF:DAY+;Price=Ask-StopPrice*3+Ask;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:StopPrice HighPrice:Price ACT:SELL QTY:POS*.25 TIF:DAY+;Price=Ask-StopPrice*4+Ask;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:StopPrice HighPrice:Price ACT:SELL QTY:POS*.25 TIF:DAY+;TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice-0.3 ACT:SELL STOPPRICE:StopPrice QTY:Pos*.25 TIF:DAY+; and the Short CXL ALLSYMB; StopPrice=Price+0.01;DefShare=BP*0.5;Share=DefShare*0.333*Price*0.01;Price=Price-Bid+0.01;SShare=Share/Price;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;Sshare=DefShare-SShare;Share=0.5*SShare;Share=Share/4;Share=Share*4;TogSShare;ROUTE=SMRTL;Price= bid-0.05;TIF=DAY+;SELL=Send;DefShare=1000;Price=StopPrice-Bid*2;Price=Bid-Price;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:Price HighPrice:StopPrice ACT:BUY QTY:POS*.25 TIF:DAY+;Price=StopPrice-Bid*3;Price=Bid-Price;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:Price HighPrice:StopPrice ACT:BUY QTY:POS*.25 TIF:DAY+;Price=StopPrice-Bid*4;Price=Bid-Price;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:Price HighPrice:StopPrice ACT:BUY QTY:POS*.25 TIF:DAY+;TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice+0.3 ACT:BUY STOPPRICE:StopPrice QTY:Pos*.25 TIF:DAY+; Long $50 Risk CXL ALLSYMB; StopPrice=Price-0.01;DefShare=BP*0.5;Price=Ask-Price+0.01;SShare=50/Price;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;Sshare=DefShare-SShare;Share=0.5*SShare;Share=Share/4;Share=Share*4;TogSShare;ROUTE=SMRTL;Price= Ask+0.05;TIF=DAY+;BUY=Send;DefShare=1000;Price=Ask-StopPrice*2+Ask;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:StopPrice HighPrice:Price ACT:SELL QTY:POS*.25 TIF:DAY+;Price=Ask-StopPrice*3+Ask;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:StopPrice HighPrice:Price ACT:SELL QTY:POS*.25 TIF:DAY+;Price=Ask-StopPrice*4+Ask;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:StopPrice HighPrice:Price ACT:SELL QTY:POS*.25 TIF:DAY+;TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice-0.3 ACT:SELL STOPPRICE:StopPrice QTY:Pos*.25 TIF:DAY+; Short $50 Risk CXL ALLSYMB; StopPrice=Price+0.01;DefShare=BP*0.5;Price=Price-Bid+0.01;SShare=50/Price;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;Sshare=DefShare-SShare;Share=0.5*SShare;Share=Share/4;Share=Share*4;TogSShare;ROUTE=SMRTL;Price= bid-0.05;TIF=DAY+;SELL=Send;DefShare=1000;Price=StopPrice-Bid*2;Price=Bid-Price;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:Price HighPrice:StopPrice ACT:BUY QTY:POS*.25 TIF:DAY+;Price=StopPrice-Bid*3;Price=Bid-Price;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:Price HighPrice:StopPrice ACT:BUY QTY:POS*.25 TIF:DAY+;Price=StopPrice-Bid*4;Price=Bid-Price;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:Price HighPrice:StopPrice ACT:BUY QTY:POS*.25 TIF:DAY+;TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice+0.3 ACT:BUY STOPPRICE:StopPrice QTY:Pos*.25 TIF:DAY+; Everything prior to defshare=1000 in each script is completely from the original Risk/Reward Hotkeys except the bit of code that ensures the number of shares is equally divisible by 4. Feel free to give them a try and let me know if there are any issues.
  11. 8 points
    Hello everyone! Me and the team usually get a lot of e-mails asking for the hotkeys we're using or for some simple hotkeys; Therefore, we created a list of the most frequently used/asked for hotkeys. This is just a beta and short version, and we will keep adding to it depending on your request. This list will be worked on not only by us moderators, but by you as well if you wish! Please share in the comments some of the hotkeys you use a lot which aren't in the list and we will definitely update it, you can also ask for any hotkey you think you miss, and if any member replies with it in the comment it'll be also added to the list https://bearbulltraders.com/wp-content/uploads/2021/12/DAS-Video-Series-Hotkey-Scripts.pdf The hotkeys have been tested in DAS trader DEMO account and DAS/IB, still make sure to test them in simulator before trying them live! Thanks all.
  12. 8 points
    I am asked a lot how to buy and send an automatic STOP Loss order all in one hotkey. Try this: ROUTE=SMRTL;Share=BP*0.25;TIF=DAY+;Price=ASK+0.10;BUY=Send;ROUTE=STOP;StopType=Market;StopPrice=AvgCost-0.30;Share=Pos;TIF=DAY+;SELL=Send; What it does? It buys at 25% of your buying power, and then automatically send a stop loss order at AvgCost -30 cent. You can change it anyway you want!
  13. 8 points
    Hello Bear Bull Traders, This TradeBook is a collection of trading strategies that the moderators within our community trade throughout the day. It is designed to assist you in understanding the setups that our moderators discuss in the chatroom. The information contained within each of these strategies can also be used as a starting point in your own journey to create a personalized strategy. It is highly recommended that you begin testing any strategy in your simulator before attempting to trade with real money. Sincerely, Bear Bull Traders Team SEE BELOW THE UPDATED VERSION..... BBT TradeBook.pdf
  14. 8 points
    Hey everyone, Below is the video on how to use the DAS Replay feature. Currently this feature is available on the BBT Simulation Version 5.4.6.0. Which can be downloaded at https://www.dastrader.com/download/fixes/DEMO.5.4.6.0.exe (When the feature is ready for production it will be release to other platform versions like IB, Centerpoint and CMEG.) Thank you
  15. 8 points
    Monday - June 29th, 2020 Markets closed weak last Friday, June 26th with major index products closing near the lows after a roughly 2% decline throughout the day. Notably Technology and major names like Facebook and Amazon were sold off heavily and led the entire markets. Sunday Night /ES Futures opened lower at 2986.25 with low at 2983.5 before coming back above 3000s. Getting above 3025 area would be of interest as that brings us into the major breakdown area from last week. /NQ Futures opened lower 9785.5 with low at 9780.25 before coming slightly higher. Overall below areas of consolidation from last Friday and still showing weakness. /RTY Futures opened lower 1362.2 with low of 1359.6 before coming much higher to test 1400. Showing relative strength given already recovered the breakdown area from last week. Monday Premarket at 9:00 ET $SPY - Trending higher from Friday low, holding at roughly 0.5% higher near Thursday's low. $QQQ - Range bound between Friday's low and Thursday's low, roughly flat 0.0% $IWM - Trending higher off Friday's low attempting to test Friday high, up as much as 1.5%. Bonds are slightly lower from last week, I expect a small pullback as bonds have had a nice run from the recent lows. $TLT recovered from recent lows at 153.00 area up to 166.5 in after market last Friday, a roughly 8.5% gain in roughly two weeks. Oil Futures pulling away from 41 Gap Fill Highs, up slightly today. Natural Gas Futures very strong up 6.25% from recent selloff last week, I expect a strong bounce from these extended yearly lows. Gold Futures flat from last week, extended at 1800 resistance on /GC. I expect $GLD to have a pullback this week before attempting a breakout. Silver Futures down slightly after a major run over the past months, consolidating in 18 - 19 range. I expect silver to underperform gold in the coming months, but still remain bullish. Volatility Futures down 2.4%, with 23/51 day contracts roughly same price (slight contango). Sectors Premarket at 9:15 ET Strong Sectors: Industrials with $BA up 6%. Financials with most large bank names up close to 1%. Weak Sectors: Communications down with $FB down 4%. Things to Watch: Since major Tech was down heavily last week, watching $XLK and MAGAF names closely. If selloff continues, other potentially 'risk-off' sectors may get bought at these lows like $XLU (been weak for a while).
  16. 7 points
    Since this subforum is by far the most active, we've stickied this FAQ which contains links to individual posts. This post will be updated regularly. [Last updated: May 17, 2021] DAS Trader Downloads DAS Trader Pro Production Releases for Interactive Brokers DAS Trader Pro Production Releases for CMEG BBT DAS Simulator Production Release (ONLY IF YOU GOT DAS SIM THOUGH BBT) When doing an install of a new version, it is always a good idea to back up your settings! DAS Trader Pro references, education and support OFFICIAL: DAS INC DAS TRADER PRO - DEMO Tutorial - How to Correctly Use DAS Trader Pro User Guide and Manuals DAS Trader Official YouTube Channel DAS Weekly Free Q&A Webinar DAS Trader Pro Knowledge Base DAS Trader Pro Risk Control explained in Knowledge Base. Common DAS Trader errors No More Order Server to Connect’ error message ‘Wrong Trader’ error message “Lost Connection to Quote Server” error message General Where can I subscribe for DAS Trader Pro live account for Interactive Brokers? How to Change Your Equity and Buying Power in Simulator How to Switch Between Live and Demo Accounts Update/Upgrade DAS To Latest Version Understanding the DAS Account Report DAS Deluxe Package - Switching Options L2 for ARCA Book DAS Trader on MAC OS also see DAS Trader FAQ > 5. SYSTEM REQUIREMENTS How to link symbol selection in Trade Ideas to DAS How to set a price alert in DAS How to add Audio Alerts in DAS How to Configure DAS Mobile for Android or iPhone Definition of Time and Sales Flags How to use the DAS Risk Control Page List of Index tickers (SPY, DJIA, NASDAQ, RUSSELL, etc.) How to Make a Pre-Market Scanner in DAS DAS Trader Videos Playlists in YouTube DAS Trader Tutorials (basic DAS Trader configuration) DAS Trader Pro Instructional Videos (Advanced DAS Trader Features) Market Replay Mode How to use new DAS Trader Market replay feature Montage, Windows, and Layouts How to Make Your Custom Layout Load as Default on Startup How to link Montage to Time&Sales and Charts? How To Setup Multiple Monitors in DAS How to Duplicate a Montage, Chart or Other Window Montage / Level 2 color and shade settings How to Quickly Add Rows to Watchlist (Market Viewer) How to Change Order Button Colours (BUY, SELL, SHRT, CXL, RPL) Select Active Montage to Trade Definition for each of the Level 1 (L1) fields at top of Montage How to select the montage before placing a trade How to use the New L2 Highlight Feature in DAS Trader (YouTube video) Charts [VIDEO] How to configure charts in DAS Trader Pro: Education Center How to Add Index Tickers for SPY, DOW, NASDAQ DAS Trader Tutorial – Make Your Chart Look Like Andrew's How to Add Average Line to Volume Study How to Drag and Drop Horizontal Lines How to Transfer Price Levels to Another Chart Drawing Support and Resistance Lines in DAS How to add previous day close (PCL), high of day (HOD) & low of day (LOD) How to Prevent Chart from Zooming out When Switching Symbols How to Add/Remove Trade Icons on the Chart Show trade info on chart (triangle click) How to Increase Y-Axis Scale to See More Price Levels / This can now be done with the newer versions (5.4.0.0+) of DAS using hotkeys Change Default Number of Candles How to add Relative Strength Index (RSI) to Chart How to Draw a Diagonal or Sloping Line How to Change font size in Chart How to add separator line for Pre-Market (Open) and After-Hours (Close) How to correct short/small candlesticks by excluding Studies from Y-Axis Scale (Y LOW, YY HIGH, etc). How to Zoom in on Specific Area of Chart Why is VWAP sometimes different between 1-minute chart, 5-minute chart, and/or Montage? How to add vertical lines on 1-minute chart to show each 5-minute period How to add Average True Range (ATR) to DAS Daily Chart How to add and use Volume by Price study How to add bid & ask to your charts How to add RVOL in DAS? Exceeded max number of global trend lines Order Entry Placing Orders in DAS Trader Pro Trailing Stops How to Lock Your Montage How to set a Bracket aka Range aka OCO order (includes hotkeys) Hotkeys and Hotkey Buttons - Always test your Hotkeys in simulator Most frequently used hotkeys Terminology Clarification: Hotkeys vs Hotkey Buttons Programming hot key for stop loss Buy/Sell Hotkeys for Automatic Stop Loss How to Create HotKey Buttons on the DAS Montage Level 2 Window Hotkeys for Flipping Position Hotkey for buying based on a percentage of Buying Power How to Adjust Montage Hotkeys Button Size What does the Panic hot key do? How to set up hotkeys for trailing stops Hotkeys for adjusting share size How to create hotkey which launches Finviz page for a selected stock Hotkey for automatic share size based on max dollar loss Hotkey for automatic share size based on % loss of account How to short stocks in SSR: see here and here Thor´s Freeroll Hotkey DAS Trader Pro Support Live Chat Support Das Trader contact page to send messages DAs Trader Support Email DAS Hotkey Line Style Configuration tool.
  17. 7 points
    I made a small application to review my trades and make some statistics about the results of each strategy. I wrote it because I needed some tools to speed up my journaling and to help me reviewing my trades and didn’t find something out there that was exactly personalizable for my style of trading and my way of journaling... Thought that sharing it with you guys would be a way to give back some of the great help that I received from this community! Features The application imports automatically from the DAS logs your trades and displays: The results for each trade and trading day All the entries and exits If you use hard stops based on trigger orders, the risk of the order/trade The risk/reward of the trade, based on the S.L. orders or on a fixed $ amount You can create trading strategies and associate to each trade additional information: The strategy used Whether the setup was valid or not according to the strategy, and if your execution of the strategy was good The theoretical maximum target that could be reached -> based on that the app calculates the maximum result of the trade if you closed your whole position at the max target If the trade is a “playbook trade”, i.e. if you want to add it to the list of your “ideal” trades for this particular strategy You can associate custom tags to the trade You can choose to exclude the trade from the calculations of the daily results and of the statistics You can attach a screenshot from the clipboard, or import it from a file You can add quick comments as well as a detailed review of the trade Based on that, the tool calculates some statistics: Number of trades and global result of the trades in each strategy Number of winners/loosers, percent winners/loosers and average winner/looser in the strategy Average result and average max result of the trades in the strategy Average risk/reward and max risk/reward of the trades in the strategy You can filter the trades for which you want the statistics: Start date/end date Time of day Strategy Direction (long/short) Whether the setup is valid, and whether the execution was good You can select the playbook trades only You can filter the trades by tags You can select only the winner or the looser trades You can filter by trading account You can visualise the equity curve of your trades: You can filter the trades used to calculate the equity curve The equity curve is synchronized with the statistics Screenshots Download Setup: Download and run the installer inside the zip. Once installed, just select the DAS Trader directory and the application will automatically start loading your trades. If you already installed a previous version of the program, the installer will automatically import all your data. In any case you can transfer/backup your data through the Import/Export functions from the File menu. Download link: TradeReview 1.3.1 Setup New in 1.3.0: Equity curve visualization, synchronized with the filters of the Statistics tab Possibility to edit the trade details directly from the table + added context menu for trade exclusion/details Joined the Trades and Analysis tabs (can be reverted through settings) Possibility to filter the trades also by long/short direction Possibility to add some brief comments about the trading day Possibility to import the last DAS screenshot Possibility to visualize more fields in the trades tables Bug fixing New in 1.3.1: Possibility to filter the trades by time of day Trades executed in replay mode are discarded Bug fixing
  18. 7 points
    Are there any plans for a “Going Live” workshop with Interactive Brokers / CMEG? Covering some items like: What to expect when transitioning to a live account DAS Platform changes to make Hotkey routing changes, etc. Notes on commissions and account types (Cash vs. Margin, Tiered vs. Fixed) Anything else relevant to what a new trader might need to know. I know there is already a video on commissions, but I was thinking of a more comprehensive video on the changes when switching over to a live account with IBKR/CMEG Maybe a Checklist of changes or summary to bring it all together for members transitioning to a live account from the SIM.
  19. 7 points
    I have created a combined Playbook and Trade Planner that may be of use for some fellow members. I use it myself as a kind of cheat sheet to refer to prior to entering a trade. The idea was to store setups / strategies with picture examples in a single file that can reveal that example with the click of a button. An example of a cheat sheet is shown in the picture. In addition to the pictures of setups I have also defined some indicators / rules for each setup which refresh with the setup selection. I define the indicators on the "Strategy_definition" sheet and add pictures in the (hidden) columns on the "Plan" sheet. When a strategy is selected in cell D8 and the button is clicked, it refreshes the table of indicators and unhides a cheat sheet example picture for that setup / strategy. It is a bit slow to refresh. In addition I have added a trade planner table. I enter my intended STOP and entry price and the intended trade direction (Long / Short) and it refreshes the R:R table which provides me with the price levels that would need to be met to deliver a 2R trade and beyond. I like to compare these price levels to support / resistance levels I have marked on the stock and other technical levels and moving averages to assess the potential roadblocks at various prices. In addition I may throw in a rough trade management plan on a simplified level with Partials planned out. I include some other useful info like RVOL, the direction of the overall market etc whilst planning the trade. As a pretty new trader still in SIM I have found this has helped me to be more disciplined / patient. It also helps journal later as it gives an idea of what I was expecting before entering a trade. I just copy a new "Plan" sheet for every new trade and have one file for the trading day with several sheets. The setups I have included are my interpretation of setups mainly from the moderators success webinars. On that basis, take it as a disclaimer to check that you agree with my interpretation and test in SIM if you plan on using this. The file is an excel document and can be accessed via the Google drive link below. It needs to have macros enabled in order for the button to unhide the cheat sheet pictures to work. I have left some blank fields to allow a longer list of setups to be included. Any feedback, tips or suggestions for improvement are most welcome. https://drive.google.com/file/d/1wm5YohE7wgNn69IEGJrUBwBn1x52zPoW/view?usp=sharing
  20. 7 points
    Wednesday - July 22, 2020 Futures Watch /ES volatile aftermarket session, I have the recent highs marked from 06/08 and recent 07/15 Resistance, a breakout that occurred 07/20, and a retest that occurred last night. I'd be looking for general Technical Rules where we continue higher on a retracement to Resistance turned Support; a break lower would be an Alternate Thesis and we have room back to V POC (3211 Gravity Point). 10D 30M Chart /NQ continues to be quite volatile anywhere above the VA High 10760. You can see the quick return to our Profile Range last Monday 07/13, consolidation over last week, and a violent move higher (algo driven) back to retest the highs almost to the exact mark. We seem to be finding support against VA HIgh this morning, so we also have a Resistance turned Support to watch for our main thesis, Alternate Thesis back into Volume Profile Range. 10D 30M Chart /RTY broke higher from our previous Monday consolidation and previous VA High 1460 into the 1460/1500 range. We've fallen back to V POC 1460 area, so I'm seeing if this acts as support or if we have a quick move down to VA Low 1410 due to the lack of Volume and a Major Pocket. 10D 30M Chart Premarket Review at 9:00 ET Interesting Futures: Silver remains very strong up 6% after multiple strong days prior. Volume Profile shows we are due for a pullback, but we haven't seen any signs yet of a pullback to VA High around 20.25. Volatile overnight session. Volatility up 1.1% and worth mentioning in a slight gap down on other Index Futures. Crude and Natural Gas both down 1.5%. Crude pulling back to major level 41, expect Resistance turned Support until it doesn't happen. NAtural Gas holding 1.62 well multiple tests and Yearly Lows that were broken recently, but we moved back inside past weeks. I also expect a bounce here over next few days. Premarket Sectors at 9:15 ET Strong Sectors: Technology and Health Care also up slightly around .5%. Weak Sectors: Mixed bag, but Energy is down 1.1% after a strong day yesterday, may be a resting day before another big move higher. Financials down .6% as well, so slight correlation. Things to Watch: $BLNK - Breakout on Daily above 6.5, we have room to test 8.5 Daily Resistance and above will be 9.2 and 15 on Weekly. Blink Charging Wins Grant To Deploy 200 Blink Fast Level 2 - 19.2 kW Charging Stations Across Mid-Atlantic Region, No Terms Disclosed $SNAP - Earnings $SLV or $PAAS - Silver possible move higher or Reversal.
  21. 7 points
    Hi everyone, Want to share my thoughts on creating a trading system. We all have goals. I think it is great. The problem is that we focus on goals without having a clear plan how to get to them. Goals are just directions. I think it is very important to focus on creating a trading system with clear steps and directions. Focus on improving that system and improving your identity as a trader. I would love to share my system, and I hope it will be helpful for some of you. Let me say a few words about myself. I started to trade a few years ago. Like many of us joined Sykes and traded penny stocks. Then I tried five more big and famous chat rooms. I was on a rollercoaster. One of my friends mentioned to check Andrew's room back in January. After watching a few videos I decided to join them. Got a life membership, and now I am here making money, but whats most important I am growing with this community. So let go back to my system... Here is a step by step what I do on a daily basis. 1. Business plan - with out a plan you just a swimmer in the ocean. It's scary and crazy. Be a captain of your own ship. But you gotta build that ship first! 2. Preparation checklist - no matter if you are a scalper or a swing trader, you can not trade a stock without knowing a float, RVOL, reading a catalyst, knowing ATR and more. 3. Having a playbook - have your setups with data collected on them. I am constantly adding charts of stocks in play to my playbook journal. Track your setups. 4. Risk management - is a KING or QUEEN not sure, always trade based of a risk. 5. Trade management - in order to know how to scale in and scale out you need to collect data. Are you good at one and done, or getting out by 10%. 4. Daily report card - track your performance. Trading is a performance job. You gotta know your mistakes, weakness and strengths. 5. Journaling - #1 thing for improvement and tracking all data. Reflect and review. Repeat day in and day out. So on every topic you have to create a detailed system, and put everything together in a way that it will be easy for your brain to navigate. You brain does not like complicated things and always trying to find an easy way. Make it easy and fun. Create good habits since the day one. Building yourself as a trader will help you to improve your personal life and the other way around. I suggest to read "Atomic Habits" by James Clear on this topic. This is a long journey, and I suggest you to take it seriously. Be a professional. Ask your self a question, "What would a professional trader do?" There is only one way to success, compound of a hard and smart work. Thanks!
  22. 7 points
    This is a good topic and we can put something together on this. We will put a rush on getting this done.
  23. 6 points
    Hi everybody, I've been thinking about giving the room my own personal touch as I often found my self during the last few months having difficulties with the small chat and all the messages... Short Story I aimed for this goals : Giving some more space for the main chat Reduce the tab selection section in the middle of the column so that it does not overflow in several lines Give some clean icons that clearly identify the content while keeping the tooltip Hide the Alert Panel while keeping it accesible using the mouse over it (autohide) Change the font for a readable one with a smaller size as I use to have the chat in a 40" TV The final result is this ( original colors on the right, darker theme on the left) : If interested in getting more room for the main chat, just install Stylus and Darkreader (if you like the dark theme ) plugins on your browser : Chrome: Stylus: https://chrome.google.com/webstore/detail/stylus/clngdbkpkpeebahjckkjfobafhncgmne Dark-reader: https://chrome.google.com/webstore/detail/dark-reader/eimadpbcbfnmbkopoojfekhnkhdbieeh?hl=es Firefox: Stylus: https://addons.mozilla.org/es/firefox/addon/styl-us/?src=search Dark-reader: https://addons.mozilla.org/es/firefox/addon/darkreader/ After the easy installation, just go to the top right cornor of your browser and click on the "S" then on the "create new style option" while being in the tab of the chatroom. Copy the CSS text that you can find attached to this post and then paste it in the editor area. Check the name you want to give to this style on the upper left corner and the URL that should be monitored : https://protradingroom.com Save the changes and go back to the room. If you want to activate the dark theme just go to the DarkReader plugin and manage your settings ... Hope anyone finds this usefull. Keep it green ! @Paul aka Aurbano 2021-12-13 UPDATE : update tab icons 2021-04-07 UPDATE : added few changes to fix tickers column on bezinga news, with bullet points, and a better line jump management >> ending in better reading ... this feature was suggested by @Justin and @Alastair ... hope it helps many people !! 2021-04-09 UPDATE : added color / background highlighter on ticker symbols starting with $ css.txt
  24. 6 points
    But wait! There's more! @Alastair @peterB I actually do have a hotkey that will place down R levels. It's a bit of a hack but it works! And being such a visual person, these are a godsend for helping me get to my R goals. The way it works is if you are in a position with a stop loss set, it utilizes your SIM account to place the target levels at 1R, 2R, etc. Look below - the green arrow is obviously my entry, and the blue arrow is my stop loss in my live account. And then when I hit the hotkey it will place two orders at 1R and 2R (orange arrow) with 1 share using my SIM account. Basically it does the math calculation for 1R and 2R, swaps the montage to my SIM account, places the orders, then puts the montage right back to my live account. The 1 share orders never get filled (I'm actually not sure why...), so as the price gets to the 1R and 2R markers you can take a partial or full exit, and it will be executed in your live account. After the trade is done just cancel the orders. Long StopPrice=AvgCost-StopPrice;Price=AvgCost+StopPrice;Share=1;TIF=DAY+;Route=Stop;StopType=Limit;Account=TRIBTXXXX;Sell=Send;Account=UXXXXXXX;StopPrice=StopPrice*2;Price=AvgCost+StopPrice;Share=1;TIF=DAY+;Route=Stop;StopType=Limit;Account=TRIBTXXXX;Sell=Send;Account=UXXXXXXX Short StopPrice=StopPrice-AvgCost;Price=AvgCost-StopPrice;Share=1;TIF=DAY+;Route=Stop;StopType=Limit;Account=TRIBTXXXX;Buy=Send;Account=UXXXXXXX;StopPrice=StopPrice*2;Price=AvgCost-StopPrice;Share=1;TIF=DAY+;Route=Stop;StopType=Limit;Account=TRIBTXXXX;Buy=Send;Account=UXXXXXXX
  25. 6 points
    Thursday - August 13, 2020 Futures Watch /ES has been steadily building value in the upper range of recent sessions such that the 10D 30M Volume Profile has moved; currently, the recent highs are now the new VA High 3380. Due to the fact we are in the VA Range and have touched the VA High, our Main Thesis is a pullback to test the V POC 3320, around the lows of Tuesday's session. If we break above VA High, we will begin a new round of 'Alternate Thesis' where we should return to the range, but may continue higher and causing additional trending days. 10D 30M Chart /NQ has remained inside the new VA Range 10875 to 11180, consolidating around V POC 11100 and currently testing VA High. A break above the range will target recent highs around 11280, or conservatively 11250 with a higher volume node as a target. Otherwise, we'll look to return to V POC on a pullback. 10D 30M Chart /RTY has a wide VA Range with numerous volume 'pockets' below; ideally staying near V POC 1585 can lead to moves higher to recent highs and VA High 1605; however, we're currently below and have some risk to reject V POC for moves lower to different volume nodes (1560, 1540, and VA Low 1500). 10D 30M Chart Premarket Review at 9:00 ET Interesting Futures: Silver up 2.5% after a large selloff Tuesday and bounce around 23.50, target 27.50 on bounce as it provided support during the rally. Watching Gold, but currently tight consolidation and trying to hold 1920 area after a similar bounce as silver. Watching Natural Gas, Gas Report out at 10:30 ET Premarket Sectors at 9:15 ET Strong Sectors: Technology and BioTech up after strong days yesterday, continuation may occur and hold up QQQ Weak Sectors: Financials down again after starting strong yesterday and selling off most of the day. Other sectors starting slightly lower. Things to Watch: SECTOR ROTATION - Keeps occurring where usually One/Two sectors are strong while One/Two are weak. Usually a back and forth between Technology, Financials/Energy, and Health Care With Financials earlier this week, Technology and Health Care yesterday, and now we'll see which one matters or if they all are range-bound, leading to a choppy market. Watching: $AAPL, $RVLV, $SRNE, $FAT (Low Float) Secondary: $SLV, Natural Gas after Gas Report at 10:30 ET
  26. 6 points
    Tuesday - July 28, 2020 Futures Watch /ES continues to consolidate within the VA High and Low Range. We tried to climb through the volume pocket above and fell back to balance, so this may dictate a test of the VA Low 3190. Keeping an eye on range of V POC 3214 and 3231 level from previous resistance and breakout areas. 10D 30M Chart /NQ passed through VA Range and tested VA High 10755 area before falling back to V POC 10595. We can either find support for another move to and outside the VA High similar to last week or a move through the range to test VA Low 10400 area. 10D 30M Chart /RTY continues to stay within now lower VA High 1490 and V POC 1465. A move away from VPOC lower has poor volume structure below and may lead to a quick selloff, but above VPOC we simply target VA High again. 10D 30M Chart Premarket Review at 9:00 ET Interesting Futures: Silver down over 2% after reaching 26.25 highs, may settle down after US dollar Index appears to have settled. Natural Gas up over 2.5% and holding 1.62 level well, targeting prior pivot high. VIX Index up around 3%, continues to find support at 24 area and possible breakout above 28.50 or breakdown below 23.50. Premarket Sectors at 9:15 ET Strong Sectors: Not much starting the day strong, so watching overall strong sectors Tech and Health Care. Weak Sectors: Metals down 2.5% after Gold and Silver showing topping action, other sectors flat to correlated with SPY, so no interest. Things to Watch: Earnings Plays: $PFE, $MO, and $MCD $SLV - Nice PM range after losing highs. $TSM - Selling off after major rally yesterday.
  27. 6 points
    Kykle K created some hotkey scripts for marking the levels on the chart with different colored horizontal lines. I use this instead of manually editing the horizontal line configuration each time you want a different line style. It works in the newest version of Das. Green: ConfigTrendLine HorzLine DashLine:00bf00:2; HorizontalLine; Orange: ConfigTrendLine HorzLine DashLine:ff860d:2; HorizontalLine; Pink: ConfigTrendLine HorzLine DashLine:ff0080:2; HorizontalLine; Red: ConfigTrendLine HorzLine DashLine:ff3737:2; HorizontalLine; Black: ConfigTrendLine HorzLine DotLine:000000:1; Blue Dashed Line: ConfigTrendLine HorzLine DashLine:0000FF; HorizontalLine; Blue Solid Line with Width of 2: ConfigTrendLine HorzLine Line:0000FF:2; HorizontalLine;
  28. 6 points
    Hi everyone! I created a spreadsheet with a compilation of the watchlists that BBT moderators used in in 2019. I used Abiel's chatlogs to create it (https://drive.google.com/drive/folders/1ZqRvuYLACi2mWwUUs5KsKQiluLo8WvgT). I already posted this in off-topic, but I think it'd be helpful to post it here too for those of you interested in using it with the replay feature. It works better if you download the spreadsheet, otherwise the colors get a little messed up when you open it with google docs. No idea why. The link below will open the spreadsheet. Hope it helps! https://drive.google.com/open?id=1lZZpy8r7bMosSDwUBdqmuEMD8Ap7NCxo
  29. 6 points
    Hi All, my name is Carlos M. I am 32 and live in Northern Jersey, few minutes from the NYC. After 12 years of working as a Senior Operations Manager, I was laid off this past December. My company purchased GE Appliances and moved to their headquarters in Louisville, Kentucky. I thought I would be more upset about the layoff but I had 12 amazing years, and I was ready to move on and try something new. The company gave us almost a year and a half notice, that was more than enough time to prepare. (Plus a nice $$$ for years of service and sticking around until the end :) ) As my work started to transition to the new company, I found myself having a lot of free time during the day. I always had an interest in trading stocks and this was the perfect time to start practicing and getting ready. I did another online course and trading that did not work out (that’s a story for another time), and then I found Andrew’s Book and Chatroom community. Signed up for the Platinum package, I did the simulator for about 4 months and when live this month (January 2018). Looking forward to possibly meeting up in the near future with others traders and continuing being part of this amazing trading community. Carlos M.
  30. 6 points
    Hi Mario, Falcon builds really quality systems, but they do come with a pretty high price tag. I am an IT consultant so naturally, I have the skills for this lol. I built my own machine with parts from my local computer store (Microcenter) for around $2,500. Mind you, I went completely overkill because my trading platform (Tradestation) is a real resource monster and you need to have some heavy processing power in order for it to run properly. DAS isn't as nearly intensive as TradeStation, but you do want to ensure you build something that won't become obsolete in the next 2 years. Especially with how frequently Microsoft is updating Windows 10, each update comes with a bit of a hit on certain areas of performance. Also just be mindful that the more monitors you wish to add, the more power you will need. Here's my system: 1x Intel i7 6800K CPU (processor) that is water-cooled and overclocked to 4.2 GHz. 32 GB's of high performance RAM 1x Samsung EVO 950 Pro (NVMe), 256B SSD (Solid State) - For Windows and applications 1x Crucial 525MX, 525GB SSD - For profile data and basic user data 1x Western Digital 3 TB 7200RPM Mechanical drive - for bulk data like image files 2x nVidia GTX 970 video cards 1x Corsair H110ti water cooler (for CPU) 1x Asus STRIX X99 Gaming motherboard 1x Corsair 750 Watt power supply 6x Acer 24" LED LCD monitors mounted on a HEX stand that is mounted to my desk 1x NEC monitor that is rotated for portrait mode and has the chatroom, Outlook and other apps on it 2x Dell keyboards. 1 keyboard is used for normal input, the second keyboard I used a free program called HIDMacros that allowed me to program any key to executed a macro or command. So the number pad on my second keyboard handles all of the order entry commands for my platform. Windows 7 Pro Remember, I went overboard because of my platform and since I am an IT guy, I figured "why the hell not?". Plus, it was a business write-off :) You will often find that "gaming" computers are best suited for day trading, but they sometimes have video cards that are complete overkill. As I mentioned above the specs of my machine, the more monitors you wish to have, the more video processing and hardware power you will need. MOST video cards can support up to 4 monitors on 1 card. If you want more than 1 monitor, than you will likely need 2 video cards. On-board video may be an option, but some manufactures will disable the on-board video if an add-on video card is detected. However, here's a breakdown of the BARE MINIMUM you need for a decent trading workstation: Processor (CPU): Minimum of an Intel Core i7 series processor. Most of these processors are fine and the latest generation (7th generation) is sufficient to handle the load. Ideally you want a processor with a higher clock speed (measured in GHz) as this will crunch numbers and data faster. Memory (RAM): NO less than 16GB's (Gigabytes) of memory. 32 is perfect, but 16 will do the job as well. The more memory you have, the more responsive programs are and the more space a program is given to store instructions that it needs quickly. Storage (Hard Drive Space): Hard Drive capacity is measured in Gigabytes and sometimes Terabytes depending on the type of drive. This isn't super important to your trading computer unless you plan on using your trading computer for other tasks, at which point, you will likely need more space. However, the most important take-away here is you want your primary hard drive (the "C-Drive" where Windows and your programs live) to be a Solid State Drive (SSD). These come in many forms, but the BEST option here is what is called an NVME drive. This type of drive plugs DIRECTLY into the motherboard. These are the fastest drives available now. The other type of solid state drive which is still a good option and good enough for trading is a regular 2.5" solid state drive that connects via a SATA data cable to a SATA port on your motherboard. This isn't as fast as the NVME drive you plug directly into your motherboard, but if you are on a budget it will suffice. The third and final type of drive to avoid unless you need a buttload of space is a standard 7200 RPM mechanical drive. These are the drives that have been around forever and the drives that moving parts (they have discs in them that spin around). These drives are slower and have a higher failure rate. Motherboard: The motherboard is the most important piece to the puzzle here since it connects all of the components and makes them "Talk" to each other. Naturally, you want a board that is compatible with your processor but also powerful enough and offers enough expansive capacity to ensure you will be able to add more memory (RAM), additional hard drives, and most importantly, additional video cards if needed. Once again, most of the gaming motherboards will fit the bill here. If you plan to have more than 3-4 monitors then you will need to ensure the motherboard you get has the ability to add another video card. You will want a board with at least 2x PCIe (PCI Express) x8 slots. Newer boards have x16 slots which is even better (the x8 or x16 signifies the speed at which the port can operate. Newer cards need the higher speed to operate more effectively, but this is more for gaming than trading). Also ensure the board offers gigabit LAN. This is a default on almost all boards nowadays, but I have seen a few lower-end boards that only offer 10/100 speed for the LAN (rather than 10/100/1000 or 'Gigabit'). Video Cards (GPU): I discussed this above with how many monitors you plan to add to your system. I prefer the NVidia cards as they are reasonably priced and they offer lots of power. You do not need the absolute latest $700 video card that has 5 GB's of RAM. This is total overkill (unless you plan to game). Any of the lower-end 10x series or even the higher numbered 9x series cards will do the job. Each of the video cards will be independent. Gamers tend to use what is called 'SLI' to make 2 cards act like one, but that is not the case here since we just need extra monitor space. Just be sure if you want more than one video card you see my notes on the motherboard above. Case: The case is something that you can have a little fun with. This is where all of the pieces of the computer live. People tend to get creative with these and get cases with windows and lights and all sorts of fancy stuff. This is entirely up to you. The most important take-away on the case is that it MUST support proper cooling. Most cases have 2x 80mm or 120mm fans in them. The more fans the more air is moving through the case to keep the internal components cool. If your goods overheat, then your machine will shut down and could potentially fry. So make sure you find a case with decent cooling capacity. Power Supply (PSU): The power supply or PSU is what provides power to all of the components. There are calculators out there that can help you determine based on what you plan to buy how large of a PSU you will need. My rule of thumb is do not go for anything less than 500 Watts. If you plan to have additional hard drives and video cards, then you will likely need a 750-1000 Watt PSU. Also, do not buy a cheap unit here. You want something that is robust and ideally, a modular power supply. These units provide the power to all of the components. If the PSU is providing crappy quality power, then you can expect crappy performance or fried components. Do not skimp on the power supply! Cooling: One final piece I am going to add here and it relates to everything else is that you need to ensure your system is properly cooled. A computer that is improperly cooled will perform poorly and you will end up replacing parts far sooner than you should. Proper cooling primarily comes from the case (discussed above), but other environmental factors such as location of the computer (is it near a heat vent, placed in a hot room, etc) will also affect the cooling. The processor is the most important component that needs to be cooled. Depending on which CPU you get, it will either come with a factory CPU cooler, or it won't come with anything. You DO NOT need to get a water-cooled system. This is ONLY for people like me who are a bit crazy and like to push their hardware to the absolute extreme. For day trading, a simple air cooler is more than enough for the processor. "Tower Coolers" as they are known do an incredible job of keeping the CPU nice and cool even under a heavy load. If you plan to go all out with high-end cards, a high-end CPU and you plan to game, day trade, edit videos and all sorts of stuff, then you will need liquid cooling. But the point of this thread is for a DAY TRADING system. so no overkill needed! I believe I about covered everything here. I probably made your head explode with even more questions, but that's what we are here for! I also apologize for the mess in my office in the pictures above. I need to re-organize my office at some point, but I had back surgery a few months ago, so moving anything is off the table for now. Although they do so that a disorganized desk is the sign of an intelligent mind.... Please feel free to ask any follow up questions. I didn't post links to specific hardware or websites since you can get this stuff from pretty much anywhere for very close to price. I have found that Microcenter is a lot cheaper than NewEgg and Amazon are. But if you don't have a Microcenter near you, you will have to order from elsewhere.
  31. 5 points
    Some users asked about this in chat a while back and as I was writing up the documentation on how to do a dual-copy of DAS Trader Pro -- one version for Sim and another for Live -- I realized that it had some complexity which may have made it difficult for some end-users. So to remedy this, I wrote a script to do it for you. I did this with batch / powershell commands (it's been awhile, so not eloquent at all) so that users can see what is going on (no tomfoolery with your accounts). What Does It Do: It's a Windows 10 (if Mac users exist, your mileage may vary) script that will: Makes a mostly symbolic copy of your DAS Trader Pro install (it'll copy over the Config.cfg file, since we need to change a few things) --> If your DAS install is C:\DAS Trader Pro\ it'll create a C:\DAS Trader Pro_Sim\ folder. By default, only the theme folder and .exe exist in the new folder install (the SIM version will check for a version change on the .exe and copy it over as needed for when updates occur), the rest is symbolically linked via the file-system to the main install. This is done so that items carry over their settings (Trendlines, Desktop Layout, Hotkeys, etc.). This is beneficial because if you use the default config then all layout, chart, trendlines, hotkeys, and other options stored outside of the Config.cfg file will be the same in both versions. You can change this behavior with options (more on that in setup below). Right now, options exist for: Desktop Layout (default.dsk), and the Hotkey File (hotkey.htk). Change the background of the simulator install (for better visual recognition). [optional] Add A Sound Alert for the Simulator version when a LIVE account trade is made in it [auditory recognition]. [optional] Add a Sound Alert for the Live version when a Simulator account trade is made in it. Example Image Notes / Prerequisites: If you set your account via as part of hotkey scripts (e.g. "ACCOUNT=U#######") you will want to change those values in your hotkey.htk file and also toggle the config.ini setting for separate_hotkey_file to "separate_hotkey_file=1" (instructions below). I assume most users won't need to this do. How Do I Use It?: Glad you asked. Download the zip file linked below and then follow the instructions here. As a precaution, I recommend you make a backup copy of your DAS install. Easiest way is to go to the folder that contains your DAS install, right-click it, and select "Send to Compressed Zip" .. if your install is in C:\, you'd right-click the "DAS Trader Pro" folder there. Unzip the downloaded file to a directory. If you use the DAS default install location of "C:\DAS Trader Pro\" - and / or - wish to have the defaults, skip to step 3. If you don't use that location, continue reading this part. Go into extracted directory and edit "config.ini": Config Available: ⓐ directory=C:\DAS Trader Pro This is the location of your DAS install. By default, it's C:\DAS Trader Pro as that is the DAS default. ⓑ separate_desktop_file=0 This is if you want to have separate Desktop.dsk files for SIM and LIVE. By default, it's the same layout. To use separate desktop files, set this as: separate_desktop_files=1 ⓒ separate_hotkey_file=0 This is if you want to have a separate Hotkey.htk file for SIM and LIVE. By default, it's the same file. To use separate hotkey files, set this as: separate_hotkey_file=1 ⓓ add_sound_alerts_sim=0 This is if you want to have a sound alert added to your DAS SIM, for this to work properly there will be additional setup (see section "Sound Alerts - SIM Account"). What it does is add an audible alert if you trade with your LIVE ACCOUNT in the SIM ACCOUNT. To use, set to: add_sound_alerts_sim=1 ⓔ add_sound_alerts_live=0 This is if you want to have a sound alert added to your DAS LIVE, for this to work properly there will be additional setup (see section "Sound Alerts - LIVE Account"). What it does is add an audible alert if you trade with your SIM ACCOUNT in the LIVE ACCOUNT. To use, set to: add_sound_alerts_live=1 Right Click "Setup.bat" --> Run-As Administrator a) On Windows Admin Prompt Click "Yes" b) On the command window that opens, make sure it does not give an error. If prompted, type the letter "Y" and hit enter. c) If no error messages, hit enter again to close the command window. Launch DAS using the shortcut created on the desktop as "DasTrader - SIM Account" --> Under ... Blue w/ S is the SIM account. Yellow w/ L is the Live account. You're not done ... go to Additional Setups section. Additional Setup: There's some brief changes we need to make within DAS for this to work properly. Open the "LIVE" version of DAS (the yellow icon). Login and on the top menu bar select "Setup" -> "Order Templates" On the "Account" box, select your LIVE account (for IB users it's likely something like U#######). Hit "Apply This Setting To All Exchanges." [optional] If you enabled the SIM trade in Live Account alert in config.ini, read the next line, otherwise skip to #5. For the Alert to work, go into Top Menu Bar -> Tools -> Alert & Trigger -> Double Click "WARN-LIVEACCOUNT" -> Double Click the "Value" box next to the "Acc" item (it should say "U1111111") -> Set this to your LIVE account. Image helper here. Close DAS. Open the "SIM" version of DAS (the blue icon). Login and on the top menu bar select "Setup" -> "Order Templates" On the "Account" box, select your SIM account (for IB users it's likely something like TRIBT####). Hit "Apply This Setting To All Exchanges." For the Alert to work, go into Top Menu Bar -> Tools -> Alert & Trigger -> Double Click "WARN-SIMACCOUNT" -> Double Click the "Value" box next to the "Acc" item (it should say "U1111111") -> Set this to your SIM account. Image helper here. Close DAS. Download: v1.00 - 1/14/2020 - outdated .. v1.01 - 8/7/2020 - DAS_DASSim_Separation_Script_V1.1.zip Changelog: v1.00 - 1/14/2020 - Release of initial script. v1.01 - 8/7/2020 - Quick rework of the script to be in its own .EXE, this may help with any issues for permissions. Known Issues: v1.00 - 1/14/2020 - My father never really played catch with me as a child, but besides that, there doesn't seem to be any that I'm aware of with the script at the moment. /joke
  32. 5 points
    What does this do: This 2 part script will allow you to set a stop loss, set a future price on your chart where you want to enter, and dynamically calculate the shares you can afford based on a fixed dollar amount. What do you mean by “2 part”?: With the current limitations of DAS, it's required to use two scripts (hotkeys) for this to work. 1. The first hotkey will set where you want your Stop Loss to be 2. The second hotkey will set where you want your Entry to be Example: The High of Day is $49.99 The current price is $49.50 and trending back up towards HOD The L2 has lots of strong ASKS at various price levels above $50.00 You want to enter if it breaks $50.00 Double click on the chart where you want to set your Stop Loss - $49.90 You hit Hotkey 1 Double click on the chart where you want to set your Entry - $50.01 You hit Hotkey 2 If and when the price hits $50.01 it will automatically enter you into the trade with your fixed $Risk and place your Stop Loss. ------------------------------------------ I used this on NVDA today at 9:51 ($415.63) for a HOD break. Luckily my preset stop was also set right below $415 at $414.97, so I didn't get wicked out I actually set it up around 9:40 and wasn’t even looking at the chart when it entered for me! By the time I noticed I was in the trade I was already in the money! Scripts: Long $20 Risk: Part 1: StopPrice=Price Part 2: DefShare=BP*0.97;Price=Price-StopPrice;SShare=20/Price;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;Sshare=DefShare-SShare;Share=0.5*SShare; SShare=Share;Share=Price*100; Price=StopPrice; DefShare=Price*100; Price=Share/100; Price=Price+StopPrice; StopPrice=Price; Share=SShare; TogSShare; Price=Price+.05;TIF=DAY+;Route=Stop;StopType=Limit; Buy=Send; Share=DefShare;Price=Share/100; StopPrice=Price; DefShare=400;TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice-0 ACT:SELL STOPPRICE:StopPrice QTY:Pos TIF:DAY+; Short $20 Risk: Part 1: StopPrice=Price Part 2: DefShare=BP*0.97;Price=StopPrice-Price;SShare=20/Price;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;Sshare=DefShare-SShare;Share=0.5*SShare; SShare=Share;Share=Price*100; Price=StopPrice; DefShare=Price*100; Price=Share/100; Price=StopPrice-Price; StopPrice=Price; Share=SShare; TogSShare; Price=Price-.05;TIF=DAY+;Route=Stop;StopType=Limit; Sell=Send; Share=DefShare;Price=Share/100; StopPrice=Price; DefShare=400;TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice-0 ACT:BUY STOPPRICE:StopPrice QTY:Pos TIF:DAY+; Known Issues: I have seen the script fail and only enter me with a small number of shares. Uncertain what caused this, but I’ll be looking for it again. Final Thoughts: I’ve been testing this in SIM for a week and wouldn’t advise using it live without doing the same. I know a lot of people have been asking for something like this - I would love to hear what other scenarios people would use this for!
  33. 5 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.
  34. 5 points
    I just switched to DAS with TDA. I was with IB before. So far, I haven't noticed any major problems with fills. I have had a couple instances of bad slippage, but might have happened anyway regardless of the broker because I got stopped on a breakout. I am trading small size and doing lots of scalps, so the savings in commissions is definitely worth it. When I start increasing my trade size and profits, I will probably switch back to IB. In my first couple weeks, these are the differences I noticed: Need to change all my hotkeys to LIMIT and MARKET instead of SMRTL and SMRTM. No problem. Otherwise, it was really easy to switch from DAS IB to DAS TDA It seems TDA will not allow me to close my position or close part of my position if I have a stop in place. I don't like this because I like to partial and then edit my stop after. Keeping the old stop keeps the little order marker on my the chart showing me visually where my stop was and I can click on my order and just replace my share quantity without redoing the stop. This is not a huge issue, but it is more work for me. I think TDA might be trying to protect people from accidentally forgetting they have a stop order and then get filled the opposite direction without knowing. Personally, I like that IB gives you the freedom to do anything you want even if it might not make sense for most people. When I click to buy/sell, there is a delay in DAS showing my order in the platform...less than one second, but for those milliseconds I wonder if I was filled and what price I was filled. I think it's just the delay in the data showing the platform and not the actual price filled. So for example, if I was going long, I hit buy...the price keeps moving up and after a slight delay I see the trade triangle where I was filled and it is usually better than where the price is currently trading. The delay is a little annoying since I like quick scalps, but it looks like I get filled where I expected. TD free commissions does not apply to every ticker or instrument. Honestly, I haven't figured out which stocks have commission or not, maybe the OTC ones (?). I will research this later since I just got started here. There were also some names I can trade on IB, but not on DAS TD, like JUVAF. Again, I am not sure why (not short locate problem because I was long). Perhaps it was foreign - I don't know. Hope this helps!
  35. 5 points
    Hi everyone, I've gotten a ton of requests for my hotkey file and associated StreamDeck icons and I haven't been able to stay on top of all the google drive requests. So I've attached them to this post! Included in the zip file: -Short and long icons for trading sizes for 100 to 10,000 shares -Sell 1/4, 1/2, and ALL size icons -Cancel icons -A couple of custom icons -The Adobe Illustrator template file to make your own -And finally my hotkey file with a specific, logical hotkey defined for each share size in the set. Hope you enjoy! JH-STREAMDECK-ICONS.zip
  36. 5 points
  37. 5 points
    Hi fellow traders. I would like to share with anyone who may find this useful or perhaps provide a helpful ‘head start’ into the world of Hot Keys. When I began to learn day trading and the importance of using hot keys, I created an editable PDF file which I would refine and develop as my trading progressed. To this day I still refer back to this chart as a constant reminder of my complex hot-key layout. One very nice thing about the PDF I am providing here is the fact that all the comment text boxes and red square boxes are ‘live and editable’. You can use this file as a head start to customize your preferred hotkeys vs. creating one from scratch. (Bit of a time saver) You will find that as you evolve your hotkeys, you will revise your PDF on the fly continuously making it more detailed and accurate for your desired use. Just a note; All I did here was take a photo of my actual keyboard and added some black space around it. I then saved a .jpg file and converted it to a PDF file. A few things I would like to point out here in hopes to answer some possible questions. This layout I am providing here is simply how I ‘personally’ have found to work for ‘my’ for my trading style. Yours can of course differ. - The text boxes Highlighted in ‘yellow’ represent the very active hotkeys I use most commonly - The colored stickers on the keyboard (purchased from a dollar store) are something I did to help me learn with clarity/confidence under pressure. Once you have used them for a while you will most likely find that you do not need colored stickers. Your hotkeys become natural to you. That day will come. - The hotkey scripts I am providing are based on using DAS trader version 5.3.0.5 (and in particular IB as my broker). Please note to ensure that you test out all your hotkeys in simulation mode before you go live. Make changes as necessary. - From my understanding and experience using hotkeys in DAS Trader Pro 5.3.0.5. Hotkeys associated with ‘stop order’ like actions DO NOT work in pre-market environments. (I do not know why). So use at your own discretion and ensure to test out all of them in the simulator environment. Perhaps now that I have done this, it might be nice for other fellow traders to share their hotkey layout and what works well for them. Be nice to see other trading styles. Happy trading everyone! And good luck! Uploaded; April 20 2019 Revision: 0 DAS HotKey Layout and Shortcut Scripts REV0.pdf
  38. 5 points
    A lot of members in our chat is looking to find a program to record their trades. I've been using Das recording for a while now. I wanna share with you guys a tutorial video how to do it step by step. If you have any questions or need help feel free to ask.
  39. 5 points
    Have you been tracking your trading just like a live account? I also "thought" I was doing well in sim, but I was not tracking anything, not my win %, not my strategies, not my daily and weekly "R"s, nothing. I bled my account for three months. I then went back to SIM for a full month and tracked everything like I should have been doing all along. I should have gone back to SIM after my terrible first two weeks, I didn't really have an edge at all. If you haven't been tracking your trading and you do still decide to go live, set hard stop daily limits with your broker. Trade with small size. If you do struggle the first week, don't be afraid to go back to SIM and track your trading to build your confidence back up. Also only trade a few setups, don't enter trades just because they look good. You may also want to mute the chat at the open, it can be very distracting. Good Luck, and don't be afraid to ask questions here or in the chatroom.
  40. 5 points
    This 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!
  41. 5 points
    Friday - July 17, 2020 Futures Watch /ES remaining above VA High 3188 and building value, looking for a pullback to V POC 3160 given extended move above range and not having tested value area. Alternative Thesis would lead to a strong breakout above the recent highs and exploring prices above 3230. 10D 30M Chart /NQ completed a full cycle above VA High 10750 and a major selloff to the VA Low 10500. Recent sessions have been range bound between the two areas with yesterday selling off right into VA Low again. May continue to be bound, but any catalyst along Tech Earnings may break things apart. 10D 30M Chart /RTY moved above the range is prior two sessions and remains above while building value. Although we often look for a return to the VA High 1450 or V POC 1415, the Alternate Thesis remains for a continual move higher and a potential for a Trend higher if we remain well above the range. 10D 30M Chart Premarket Review at 9:00 ET Interesting Futures: Volatility Futures down 2.5%, lows from past week being broken, I'm noting this as important given the alternate thesis ideas on the major indexes. Bond Futures aren't up much, but $TLT remains elevated after the breakout last week. Somewhat conflicting areas of interest with the market being 'on the edge' in a lot of areas. Oddly, the futures are inverted from the Index ETFs, with /NQ strongest. Not sure the reason. Premarket Sectors at 9:15 ET Strong Sectors: Technology slightly higher and above yesterday's trading range, so expecting some strength into next Volume Area around 107.5. Home Builders and Materials have some potential to break out given daily chart. Semis are also primed for a breakout. Weak Sectors: Real Estate lower than yesterday's range. Things to Watch: $NFLX - Earnings, watch 480 multiple confirmations of level and 490 TFL.
  42. 5 points
    Tuesday - June 30th, 2020 Futures Watch /ES Futures closing at the highs and fading slightly lower into today's PM. Tightening range and consolidation with a volume pocket above to get to the Volume Point of Control (POC). /NQ Futures closed strong and had a slight fade pullback, currently hovering near the 10,000 mark and no direction clear at this time. /RTY Futures closed strongest yesterday and appears to have tested Volume POC twice. Ideally other markets will drive directionality. Premarket Review at 9:00 ET $SPY - Flat around 304 area. Market expecting more information before making a move. Watch 303 area major consolidation yesterday and high volume node. $QQQ - Flat around 242.75 area, had a major pullback off the 237.35 tweezer (double bottom) lows from yesterday. Watch 242.46 yesterday pivot high before closing rally. $IWM - Flat around 141 area, break above Friday highs so showing relative strength for a move higher in the coming week. Watch highs and lows from yesterday defining the range we're in. Bonds slightly higher, $TLT at a volume node and may consolidate as it did last month between 162/168.5 Oil Futures down 1.8%, but showed some strength in correlation with the markets yesterday, so may be pulling back similar to S&P. Natural Gas Futures very strong up 3.8% after yesterday strength, watching again today for continuation. Gold Futures consolidating below 1800 resistance, fairly flat. Silver Futures flat and volatile range between 17 and 18.5. Not on watch. Volatility Futures up 1.9%, keep watch for this to show a early signal for market directionality. Premarket Sectors at 9:15 ET Strong Sectors: From yesterday, Metals and Home Builders performed well. Volume was light overall across all sectors. Today, watching Technology for continuation and Utilities for a break of Friday highs. Semiconductors ($SMH) are quite strong, so may help Technology carry forward. Weak Sectors: Financials and Energy are continuing to be the weakest sectors overall, daily ranges are reduced on Energy so possibly slowing momentum to the downside. Things to Watch: $WFC due to relative weakness in weak Financials, possibly due to dividend cuts over other banks (failed stress test). $FB getting away from 220 after two volatile days. $MU gap up and strength in semis.
  43. 5 points
    Hi Everyone! I am an Optometrist in Canada but I've always had a secret interest in trading I just didn't know how to start. My husband actually bought the book off of amazon a few weeks ago for himself but once I got my hands on it I couldn't put it down. I joined BBT a few weeks ago and have been watching the classes and morning chatroom. What a great community. I just started in the DAS simulator -- Right now I'm working on customizing hotkeys and layout and focusing on 1 strategy at a time. If there are any other new traders practicing in the simulator that want to connect, I would love to get a small group together to throw around ideas/tips. Please reach out to me! Look forward to getting to know a lot of you here. Lauren
  44. 5 points
    Here is my setup for now. Once I have moved up a couple risk levels I will be adding another 24" monitor on the top as a reward for sticking to my plan. I plan on moving into a new room hopefully within a year but I need to sell out of our online business so I have room. Oh and by the way, My phone is an old crappy LG V20 so a new Iphone is what has been on my list for some time now. LOL Thank you for the opportunity not only for the phone but for opening my eyes up to trading. I follow daily and watch all the videos offered and I know BBT has been the only reason I have succeeded thus far. As of now I watch the PM Show everyday while gathering my own list from what I have learned from Carlos and Norm. I do have a few trading buddy's that I talk to live while trading everyday (that is what the headphones are for) and we try to keep each other in line and this I feel is another reason I am continuing to grow. Trade Safe and Stay Green Glenn
  45. 5 points
    I am almost at my 1 year trading live anniversary. Time to evaluate if it is worth continuing this journey. I was in SIM for 6 months, so I have been trying to learn day trading for 18 months. I always planned to access my progress and evaluate if I should continue at my 1 year live anniversary. It has been quite costly in time, so it is a serious consideration. Though I feel like progress has been made in my trading I don’t see any change in profitability, so it is not an easy decision. But with some reflection, this week, I realized it is better to look at this more holistically. The change in my personality (for the better) has been dramatic. I would even say transforming. Especially, the last few months. I see improvements constantly and I would not want that to stop. Waking up at 5am and forcing yourself to face your fears, endure stress and muster the strength to make changes in yourself to improve creates dramatic results. Let us say I went a different path and started working on starting a business. I would have worked on prototypes, a business model/plan, and presentations for funding. For the most part not stressful and no internal improvements would have been made. If I feel off that day, the worse thing is I program the 3D printer wrong and the part is thrown in the trash. If I feel off while trading I could go tilt and lose a large part of my family savings, permanently altering our lives. A much greater incentive for personal growth in the latter. I like this growth in myself and I don’t want to stop. That alone it is worth continuing. Now if someone walked up to me and asked if they were training correctly, and they showed me my training plan for the last 18 months, I would say no. So way am I training this way? If you get a couch potato and you want to start training him for some track/field event, would you spend 10 minutes a day practicing in each decathlon event? No. But that is what I did. I set up my platform, and started trading different setups every day. Hoping I would get good at one of them. I would have recommended to the couch potato to first put the mileage in running. Then hit the weights. Improve your flexibility and get on a sensible diet while reading up on the events. So why didn’t I do that? And worse why am I not doing that now? Yes, I am trying to improve on some of that, but looking objectively I am still training wrong. So first I listed what I should have done the past 18 months, find the deficiencies and then I will create an appropriate training plan. So here is my should have done list: 1 Education Read enough to know you have a serious interest. Read enough to learn what next to read. Read enough to know what platform broker/SIM to use. 2 Get fit Physically (exercise and diet) 3 Get Fit Mentally (Decrease the incoming stress, able to handle stress and methods/activities to alleviate the stress). 4 Business plan Do you have at least two years to learn? How many hours/week can you devote? How much disposable cash reserves do you have to cover expenses and losses? 5 Set up Trading equipment. You can be frugal, but don't be cheap. 6 Training Plan 6 months SIM. Training during market hours and training after market hours. Mental and physical fitness should be part of the training plan. Also reading, webinars, etc. 7 Trading Plan What time of day do you want to trade SIM, for how long? Chat on/off? Risk? Max loss? Max trades? These should all be decided in SIM 8 Learn the platform in SIM Make a trade, partial and stop. Don't leave this phase until hotkey mistakes are <10% of the trades 9 Exploration phase You need 3 trades in your playbook, though only one needs to be solidly profitable. 10 Dip your toes into live trading Once hotkey mistakes are reduced and you have at least on setup in you playbook, you should go live at least once a week with very small share size 11 Discover trades that fit your personality Nothing works? Or some setups do work but you are completely stressed when you take them? 12 Reread trading books, especially psychology The books will mean more after being in SIM awhile 13 Revised trading plan At least the last month of your trading plan should mimic your live trading plan 14 Choose 3 setups Not just the one's that have worked the best, but the one's you feel the most comfortable taking. 15 Refine trades You should be now taking trades like they are live. Once you do this you will see adjustments are needed. 16 Revised trading plan This is the live trading plan, risk, max loss and max trades need to be written in stone 17 Revise Business plan If not yet, trade losses need to be in your business plan 18 Go live 50% I assume, in the beginning, you will hit max trades quickly then switch to SIM. Also make sure you take some SIM trades on setups you are still working on. 19 Work on nerves Reread psychology books, they will make the most sense once you are live. 20 Test risk management Even if you lose every trade, your losses should be manageable. If not work on risk management. Do not go past this step until complete. 21 Go 100% live Once risk management is solid, go fully live. 22 Increase fixed R Find the risk you are comfortable and slowly increase. Stay within comfort zone. With that in view I didn’t even get through step 3. In the Van K Tharp course I am taking, they give you a test to check if you are ready to handle trading. There are essentially 3 parts. How much stress is in your life now (can you handle any more like day trading)? How well do you handle stress? Do you have methods to efficiently alleviate the stress? I failed this so badly I was below the bottom of the scale. So I should have known and fixed this 18 months ago. Now I have made progress and I do noticed my nerves are better when I trade. I have set goals to improve it and I have listed those in another part of the forum where I journal the Van K Tharp course I am taking. But this must be my top priority. I am so glad I created a business plan or I would have quit when I started losing lots of money when I went live. Because I assumed I would have losses and had it in my business plan. Though I spent 6 months in SIM, I never really made it through step 8 (know the platform) or step 9 (exploration phase). I use to make 2 or 3 hot key mistakes a day. It completely disrupted my trading and was a big impact in learning how to trade. I should have spent all my time fixing the issue before moving on. This issue is fixed now and my hotkey mistakes are low, but that was a waste and caused undue stress. As for step 9, I left demo without any working setups. I tried and nothing worked. Then I chose the 5min ORB and heavily practiced it on DAS SIM and tradingsim.com with little improvement. I finally left demo just to try another platform to see if it would help my hotkey mistakes. It did. I wish I did step 10. I do recommend it for new traders. Step 19 took a while to fix (nerves). Rereading Trading in the Zone and Daily Trading Coach after you go live has much more of an impact. I tried reading lots of other books to help, I found most not useful. I did finally find a couple that helped. Essentially, I was raised that being negative was good. We would be punished as children for acting to positive, like we are jinxing the future. If we enter a task to positive and we fail my parents would love to tell us we ruined are chances because of the positive thinking. “Laugh before breakfast, cry before dinner,” was my parent’s favorite phrase. So this was a lot of programing to change. But, I have known lucky people. They enter the situation positively and assume things will go their way even though the odds are against them. And I watch how things go their way. So this mind set can really help in trading. You don’t second guess yourself and the ability to find setups is improved. There was actually an experiment that showed this. To keep an open mind to different possibilities. If you think that something positive may happen, when an opportunity, though it may be outside the box, crosses your path, you would see it and act. I would be close minded and not see it. There is actually some data for this. I once read about an experiment where volunteers were gathered. One set of people considered themselves usually the lucky type and the second group considered themselves unlucky. Everyone was given a newspaper and asked to count the number of pictures in the newspaper. The unlucky group usually took 2 or 3 minutes to count all the pictures. The lucky group usually took around 10 seconds. Because the lucky group all noticed a big sign on page two stating, “there are 46 pictures in the newspaper.” The unlucky group were focused on just looking for pictures and never noticed the sign. You can imagine how that applies to day trading. So you need to make yourself luckier by using the power of attraction. Step 20 (Risk Management). Ok, I think I got this one. I have not lost any money in the last 8 months trading live. My trading is not very good so it must be risk management keeping me afloat. Step 21 (increase your fixed R). Definitely doing this one wrong. Essentially, I increase my fixed risk/trade, during profitable time, to the maximum I can handle without it affecting my trading. That’s not really the correct way to improve one’s trading. My fixed R is currently $30. If I go any higher the impact of a full stop out is too much to handle. Thus, I am at my maximum I can emotionally stand. But, it is still too high and affecting my trading causing bad habits. You shouldn’t choose the most you can handle you need to find a sweet spot in the training phase. If too little it feels like you are in SIM and you will trade too reckless. If too high you will trade to careful. So I need to lower my R. It will take a few tries to find the sweet spot. So I am trying to determine my new trading plan. I will need at least a week to plan and experiment. I will have it fully implemented by my 1 year live anniversary. I have decided to give it one more year. If I still haven’t seen steady progress I am pretty confident I never will and should move on. The one thing that is certain, as in all changes for the better, things will get worse before they get better. Once I step outside my comfort zone and change things up, I will take losses again. I need to prepare myself for it. I have gotten quite use to not losing money. Sorry this post was a bit long winded. Thanks for reading. Have a good weekend.
  46. 5 points
    If someone is interested, I wrote a few AutoHotkey commands to add new rows and perform other actions in the Market Viewer through hotkeys. In the attached file you can find hotkey scripts to: Delete the selected row (ALT+D) Delete all the rows (SHIFT+ALT+D) Add a new row (ALT+N) Export the current list to a file (ALT+E) Import the previously exported list (ALT+I) The last two commands are useful to copy the content of a Market Viewer window to another Market Viewer window Additionally, there is a command to add the current symbol selected in the Montage window to the Market Viewer. However, the script is written to work only if the Market Viewer window is the only one located in the same screen of the Montage window. If you need the script can be adapted to insert the symbol in a specific Market Viewer (follow the instructions in the script). To use the script, change the extension of the file to .ahk and launch it with AutoHotkey (https://www.autohotkey.com/) EDIT: Updated with a new version, including some new functions: Possibility to add the date to the exported files (IncludeDateMVList parameter at the beginning of the file) Some functions to calculate the profit targets based on multiples of your predefined risk A function to drag a symbol from the Market Viewer list to a chart (useful if you don't want to use a montage window for each chart) A function to toggle between standard and bigger Montage window height (to display wider market depth when needed) DAS-BBT-V1.ahk.txt
  47. 4 points
    Unfortunately we can't script prices into horizontal lines.... Wouldn't that be nice There is a workaround with the Fibonacci Line tool. To set it up: - Set a hotkey to place a Fib line (script = FibonacciLine) - Press the hotkey and draw a line anywhere on your chart. - Right click on the vertical line and select Config. - Chang the line settings to match this: - Now, when you enter a position and have a stop loss. You simply hit the Fib hotkey, and click and drag down from your entry to your stop. - You will then have nice price targets on your chart that will look like this: As you can see, I'm embarrassingly partialed in my trade too soon!
  48. 4 points
    The Day Trading Plan discussed in this YouTube video is now available for download here. Supplementary resources: Sample Playbook Template.
  49. 4 points
    Monday 03/23/2020 I had a well-being score of 7/10 this morning. I took 1 live trade with AMD. My watchlist: AMD, UBER, TSLA, MGM, CCL, and ZM. I was watching AMD at the open as default, since nothing else on my watchlist had a PM that was interesting. AMD opened weak with SPY. AMD made a reverse hammer. I shorted when the price broke the 200MA-5min with a L2 signal (but not a big signal). What AMD looked like when I went long: My target was PDC (39.60) with a stop 40.60 (when my 1min candle would go green and the break 40.50 where PM was respected). I took two partials and did have my auto stop at B/E. But I hate when the price flies through my stop and removes all my profit. So I bailed a little early (my cover was exactly on my 1st partial so you can’t see it on the chart). But of course if I held to my stop I would have reached my target and beyond. What did I do good today? Stopped at one trade. That took some resolve since I was only at +1R. But my goal is to find one good trade. Essentially, a trade that reaches my target. AMD did reach my target (and beyond), it was my fault I didn’t take advantage of it. So I took a trade that reached my target, so I am done for the day. What I am grateful from today? I took a short trade. I have noticed I have been taking a lot of long trades lately, I am worried I am getting a bias. It doesn’t help that I have less stocks that have shorts (shorts I can take quickly) with Centerpoint.
  50. 4 points
    I was looking for the daily score card that Brett Steenbarger suggests but couldn't find anything to incorporate in my journal so I came up with my own custom journal. I borrowed a lot of what Robert has in his journal template and made an excel file that is formula driven when the trade log is exported and pasted into it. I copy the day tab that is currently labeled "04.25" and pull in my trade log from Das in there, then update the Summary sheet tab using the existing Hlookup formulas. Here's a copy of the file if anyone is interested. https://drive.google.com/open?id=1WcUmRE2lMy3jyf8UICQXdRXU1m7LUFgk
×
×
  • Create New...

Important Information

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