Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation since 04/21/2020 in all areas

  1. 24 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. 14 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. 11 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. 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
  8. 9 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
  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 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
  12. 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).
  13. 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
  14. 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.
  15. 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
  16. 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
  17. 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.
  18. 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.
  19. 5 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.
  20. 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!
  21. 5 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!
  22. 5 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
  23. 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!
  24. 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
  25. 5 points
  26. 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
  27. 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.
  28. 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.
  29. 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.
  30. 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.
  31. 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
  32. 5 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.
  33. 4 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.
  34. 4 points
    This table does not apply to all traders, but for those that have a strategy that is very buying power intensive. It takes in consideration that IBKR and other brokers actually limit us to 25% margin in several volatile tickers, so this table is actually conservative on what could possibly be done with consistency. I made this table to clearly display what the ideal scenario is for someone who has a successful strategy that is reliant on the upper limit of their buying power available. Several of my win days are larger than my goal amount ( x3 ) and some are SIGNIFICANTLY bigger than my goal amount ( x10 ), so I decided to simplify this table and go with a "If I never lost a single day at bare minimum goal amount" approach. With a starting balance of $25,000, 0.05% risk per trade, 5R goal amount, and big winners every so often, you would still have to wait probably at least 2 1/2 years before living off of this income was easily achievable. (assuming you want to continue to build the account while living off of the income) At first the numbers seem way too conservative, but then all of a sudden they seem unbelievable. Year $ Gain Risk Bump @ +10% Intervals Goal Amount 5R Risk Per Trade 0.05% Total Trading Days Years Months Days $15,263 $25,000 $63 $13 40 0 1 28 $27,500 $69 $14 80 0 3 25 $30,250 $76 $15 120 0 5 23 $33,275 $83 $17 160 0 7 21 $36,603 $92 $18 200 0 9 19 $40,263 $101 $20 240 0 11 16 $27,039 $44,289 $111 $22 280 1 1 9 $48,718 $122 $24 320 1 3 7 $53,590 $134 $27 360 1 5 4 $58,949 $147 $29 400 1 6 32 $64,844 $162 $32 440 1 8 30 $71,328 $178 $36 480 1 10 27 $47,901 $78,461 $196 $39 520 2 0 20 $86,307 $216 $43 560 2 2 18 $94,937 $237 $47 600 2 4 16 $104,431 $261 $52 640 2 6 13 $114,874 $287 $57 680 2 8 11 $126,362 $316 $63 720 2 10 9 $84,860 $138,998 $347 $69 760 3 0 1 $152,898 $382 $76 800 3 1 29 $168,187 $420 $84 840 3 3 27 $185,006 $463 $93 880 3 5 25 $203,507 $509 $102 920 3 7 22 $223,858 $560 $112 960 3 9 20 $246,243 $616 $123 1000 3 11 18 $165,367 $270,868 $677 $135 1040 4 1 10 $297,954 $745 $149 1080 4 3 8 $327,750 $819 $164 1120 4 5 6 $360,525 $901 $180 1160 4 7 4 $396,577 $991 $198 1200 4 8 31 $436,235 $1,091 $218 1240 4 10 29 $292,958 $479,859 $1,200 $240 1280 5 0 22 $527,844 $1,320 $264 1320 5 2 19 $580,629 $1,452 $290 1360 5 4 17 $638,692 $1,597 $319 1400 5 6 15 $702,561 $1,756 $351 1440 5 8 12 $772,817 $1,932 $386 1480 5 10 10 $518,994 $850,099 $2,125 $425 1520 6 0 3 $935,109 $2,338 $468 1560 6 1 31 $1,028,619 $2,572 $514 1600 6 3 28 $1,131,481 $2,829 $566 1640 6 5 26 $1,244,630 $3,112 $622 1680 6 7 24 $1,369,092 $3,423 $685 1720 6 9 21 $1,506,002 $3,765 $753 1760 6 11 19 $1,011,372 $1,656,602 $4,142 $828 1800 7 1 12 $1,822,262 $4,556 $911 1840 7 3 10 $2,004,488 $5,011 $1,002 1880 7 5 7 $2,204,937 $5,512 $1,102 1920 7 7 5 $2,425,431 $6,064 $1,213 1960 7 8 33 $2,667,974 $6,670 $1,334 2000 7 10 30 $2,264,355 $2,934,771 $7,337 $1,467 2040 8 0 23 $3,228,248 $8,071 $1,614 2080 8 2 21 $3,551,073 $8,878 $1,776 2120 8 4 18 $3,906,181 $9,765 $1,953 2160 8 6 16 $4,296,799 $10,742 $2,148 2200 8 8 14 $4,726,479 $11,816 $2,363 2240 8 10 12 $5,199,126 $12,998 $2,600 2280 9 0 4 With a 3k account this last year I was able to make 34k (Totaling 37k), paid off my debt, and then made another 6.5k from only 8k starting balance in the last 3 months. I'm only 'flexing' these numbers because there isn't very much announced success on here to the point that it can be discouraging. I wasn't profitable for 3 years, and before I started making money I literally lost all of my money and money that wasn't mine. If you are someone reading this that doesn't have very much money, I would really encourage you to find good investments rather than day trading, while you learn to trade. Learn to do the conservative routes like selling covered calls and selling puts so you can get the confidence under your belt and build your equity. Slow is smooth, smooth is fast. Eventually you will stumble upon opportunities that are obvious rather than forcing trades because you won't have the stress of 'making it' as a day trader. Those opportunities will build your account and give you peace of mind while you chip away at this skill. All that being said, this table is actually achievable. Stay the course my friends. Bailey Nevener
  35. 4 points
    ANOTHER UPDATE --- SOLVED MY PLATFORM DELAY ISSUE. WORKS GREAT!!!! So my issue with a few seconds delay between any order is finally fixed. In short, I installed the platform again on a completely different folder per recommendation from DAS. So I no longer have my platform freeze after every order or every time a pending order gets filled. It's a breath of fresh air....finally. Long story...my problem with seconds of delay freezing up my platform was feeling like it was getting worse....like 5 seconds where I can't do anything on my platform every time I place an order or when one gets filled. Finally I was playing around in SIM and Trade Replay and noticed the same thing happened, which is odd since it's just SIM and as far as I know, does NOT need any communication with TD. I had contacted DAS several times and tried all the usual things: updating platform, uninstall/reinstall, even changed my internet service provider for faster connection. Now that I made the connection of the delay happening in Trade Replay (I just recently signed up for replay), I knew it had to be my platform. I contacted DAS and they told me to reinstall in another folder and thankfully it now works as I hoped.
  36. 4 points
    After listening to the Mastering Trading Psychology Audiobook by Andrew and Mike, I'm proud to say I've taken some very positive steps in my lifestyle choices. I got myself an Exercise Bike in February and have been doing a daily workout where I never really exercised at all (unless you count running around after 3 kids exercise). 3 Weeks ago, I was having beer almost daily, and from 2 weeks ago, now only having some at the weekend instead. And from today, I've cut out coffee during the week. Along with missing breakfast most mornings, I decided to kill 2 birds with 1 stone and make my own fruit smoothies - I get my breakfast, and my morning drink. Feel good about the changes I'm making and it's thanks to listening to that audiobook - Thanks Guys.
  37. 4 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.
  38. 4 points
    Hi Folks My name is Shannon - I'm from Calgary, Alberta, Canada. I'm typically a pretty shy person - but thought I'd reach out to the community and see where it leads - I'm quite excited to be a part of the BBT community. I stumbled upon Andrew's book last summer and was immediately drawn to his ability to humbly and clearly communicate information that I find is typically made quite technical and confusing. It led me to the website where I lurked around for a week. Once again I was quite impressed with the humility and helpfulness of not only the moderators - but the entire community. I watched a few trading sessions and browsed through the learning material and decided quite quickly that this was the environment that I wanted to learn to trade - I actually did not even look at any other trading communities - and I became a Lifetime Member. I've spent my entire career of 31 years in emergency services as a paramedic and firefighter. I'm eligible to retire in the next 12 months - not sure exactly when I will - and I've thought several times that Day Trading may be a perfect 2nd career. Fortunately - I have a plenty of time to patiently and systematically learn and practice the material. My dream is to become profitable as a trader so that retirement from my current career is a simple decision - and I can spend more time with my wife and family. Looking forward to this new journey!!
  39. 4 points
    Tuesday - August 11, 2020 Futures Watch /ES continues to be in 'Alternate Thesis' where we have moved well past the VA High now higher at 3320 and continuing to squeeze higher, leading to a rally and shorts covering. I marked 3337 as a possible target is this scenario, which we have achieved, broke through, and retested as support on yesterday's session. We have good volume support below near 3350, so we would need to lose or gap below this area to consider VA High as a target below; the current thoughts are we will continue to go higher until we have a clear reversal signal/day. 10D 30M Chart /NQ has moved the VA Range into the current range, testing the VA High 11275 highs on Friday before falling back into V POC around 11050 at the time. Yesterday we did try to lose the marked support, yet we closed slightly above and moved higher until this Premarket session, where we quickly fell right back to this area. Larger structure is showing weakness in this area, as rotation is occuring in the overall markets. 10D 30M Chart /RTY is moving strongly off of a test of 1540 support and current VA High. Alternate Thesis is in play; however, volume structure below is less supportive if a resistance and selloff were to occur. We will look for continuation into an extended move and into long-term resistances or a sign of reversal for a larger move back to VA High. 10D 30M Chart Premarket Review at 9:00 ET Interesting Futures: Crude and Natural Gas up around 1.5%. Crude retesting 41 last week and rallying to retest 43.50 recent highs, Natural gas breaking above a range area and holding above 2.15 recent highs to reverse a major downtrend over the past years. Metals down with Silver down almost 7% and Gold down 3.5%. Volatility down 3.5%, continues to decrease as market grinds higher. Premarket Sectors at 9:15 ET Strong Sectors: Financials with bonds lower ($TLT big drop) and Energy with strong Crude and Natural Gas. Sector Rotation into these beaten-down sectors. Industrials strong with airliners. Weak Sectors: Technology overbought and being sold off and Metals similar strong run with a larger pullback today. Things to Watch: $BA and airliners. Financial and Energy names like $C, $JPM, and $OXY weak with overall Energy strong. Weak Tech names like $AAPL having trouble moving outside of tight range 440/455.
  40. 4 points
    Thursday - July 30, 2020 Futures Watch /ES big movement yesterday breaching the VA High 3245 and immediately falling back into the V POC 3225 which has been climbing slowly in recent trading sessions. I continue to hold Main Thesis that VA Low 3195 needs a test after multiple attempts to break out of Value Area Range. 10D 30M Chart /NQ lackluster move higher into a Volume Pocket and quickly back down to V POC 10600, a test of VA Low 10395 Main Thesis given no new highs in recent sessions. 10D 30M Chart /RTY breach of VA High 1490 and rejection at 1500 back to V POC 1480. Similar structure to /ES, I'd be looking for a test of VA Low 1465 multiple support area. 10D 30M Chart Premarket Review at 9:00 ET Interesting Futures: Silver down 4.5%, lots of volatility during Federal Reserve Meetings and now gapping lower. Energy Futures (Oil, Natural Gas) down 1.5%, weak Energy Sector. Volatility Futures up 5%, VIX up 9%, lots of buying in volatility today. Bonds are up and $TLT breaking 170 resistance and getting bought higher in premarket. Premarket Sectors at 9:15 ET Strong Sectors: None, a few flat sectors (Metals and Communications), but no volume as well. Weak Sectors: Financials down almost 2% due to bond yields falling lower. Energy down 1.5% weakness in commodities and Financial Weakness correlation. Multple sectors correlated with weak Index ETFs, Technology/QQQ down 1%, SPY/Utilities and Cons. Disc. down 1.2% Things to Watch: Silver ($SLV) Volatility Products ($VXX / $UVXY) Short Candidates ($BA Continuation, Banks like $C and $MS)
  41. 4 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!
  42. 4 points
    Será el viernes 17 de julio 4:00 pm por zoom, publicaremos aquí el link, favor de confirmar asistencia en este post. Abiel le está invitando a una reunión de Zoom programada. Tema: 1a Reunión Miembros BBT Hispanos Hora: 17 jul 2020 04:00 PM Hora del este (EE. UU. y Canadá) Unirse a la reunión Zoom https://us04web.zoom.us/j/8803446294?pwd=NG5pSDJYTm9ENFg2V0FKUGZpOXZqZz09 ID de reunión: 880 344 6294 Código de acceso: 7vQK6m
  43. 4 points
    Monday - July 13, 2020 Futures Watch /ES opening Sunday night 3183.5 and traded somewhat range bound, testing those lows twice before slightly trading higher into 3204 this morning. We're past the Volume Range High and breaking multiple pivot highs from last week's session, so a return to 3175 support before heading higher would be ideal for strength. 10D 30M Chart /NQ opening Sunday night 10848.5 and trading range bounce until breaking out this morning into 10950. We're right at the Volume Range High and the Profile overall has a lot of weak areas with very little volume, so hoping we can pull back and fill those 'holes' before continuing to head higher, because any downside will be fast. 10D 30M Chart /RTY opening Sunday night 1423 and trading range bound into the morning session, still no breakout of the initial highs after Sunday open 1438.3. Inside the Volume Profile Range, so still waiting for some directional bias, using Index ETF for ideas with wedge breakdown failing and retesting 145 on the table. 10D 30M Chart Premarket Review at 9:00 ET Index ETFs up roughly 1% or higher, $QQQ breaching slightly above Daily Chart Channel high 265 area, $SPY gapping over remainder of overhead gap 318.22 and into 'Island' price levels on Daily Chart, and $IWM back inside daily wedge heading back to test 145 resistance. Interesting Futures: Silver Futures up over 3.25% and been rising all morning. Volatility Futures down 1.8% and back near 27.92 low support on 07/02. Bonds down slightly, but $TLT right at daily range support 165.25 area after last week breakout. Premarket Sectors at 9:15 ET Strong Sectors: Financials gapping up above resistances and up 1.4%. Consumer Discretionary gapping up 1% and ATH on SPDR ETF. Tech is in line with SPY gap up. Weak Sectors: Nothing showing relative weakness yet. Things to Watch: Hard to watch given DAS NYSE Data issues. Watching Oil Tankers given movement last week ($NAT, $STNG) Tech for any loss of momentum with a large risk/reward to the downside $WKHS - Hearing Roth Capital Partners Raised Workhorse Group Price Target From $12 To $27; Unconfirmed
  44. 4 points
    One other thing to note is that when you do hit the second hotkey, your order will look like a range order (see picture below). This is actually visually showing your "fill up to" range (Thanks for explaining this Kyle!) This is a little embarrassing, but I think I had this hotkey working quite awhile ago, I just didn't understand what I was seeing! I thought it was some kind of weird range order, that the script wasn't working, and so I always cancelled it before triggering and went back to the drawing board! And just going to tag some people who I know were interested in this in another thread: @Travis Weirich @peterB @JenniferL @WindssKat @Ryan Wilson
  45. 4 points
    Wednesday - July 01, 2020 Futures Watch /ES rallied hard yesterday into the Volume POC 3100 which was the likely probability once reverting back from the Sunday lows. Pulling away from V. POC may lead to another test of 3040 high volume area and lower consolidation area. /NQ pulled away from Volume POC approx 10000 and is extending past the one SD range. Probability favors a pullback back into the range, but as the strongest sector, the alternate case to retest 10300 is certainly on the table. /RTY has been oscillating around the Volume POC 1420 area with tight range consolidation on Monday, break away lower into Tuesday before moving higher, and now right back in the area. Given correlations with other markets, look for a tightening range before aligning to the prevalent trend of other products. Premarket Review at 9:00 ET $SPY - Starting to trend higher into PM highs, may be attempting to retest 310 and yesterday highs in the afternoon. Expecting some strength and exhaustion into daily resistance levels 310.51 gap entry and 311.61 gap fill. $QQQ - Flat with yesterday resistance above 248.16 and PM highs. Looking for an extension higher and pullback given futures volume profile. $IWM - Slightly lower coming into PM highs and yesterday highs 143.62. Daily has 144.50 area as resistance with multiple tests on prior days. Bond Futures lower about .30% and $TLT gapping lower into 162 lower end of prior range. Oil Futures volatile this morning with large ranges around Volume POC 39.69. Natural Gas Futures pullback back after a two-day rally from the lows, also pulling away from V POC 1.718. Gold Futures breaking yearly resistance levels yesterday around 1800 and falling back into the breakout area. $GLD extended past Volume SD Range and pulling back into 166.3 V. POC. Silver Futures pulling back after strong breakout rally yesterday, very extended looking to revert back to 18.15 top of SD range. Volatility Futures down 1% pulling away from Volume Range and headed to test lows 30.31. Premarket Sectors at 9:15 ET Strong Sectors: Industrials with airliner catalyst, Financials trying to break yesterday highs. Health Care with Pfizer catalyst. Weak Sectors: Materials and Consumer Disc. inside bar starting the day. Tech is starting flat. Things to Watch: $PFE - Pfizer, BioNTech Press Release Confirms Early Positive Data From Ongoing Phase 1/2 Study Of Coronavirus Vaccine Candidate $UAL - Extending capacity for flights $FDX - Earnings
  46. 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!
  47. 4 points
    Hi everyone! My name is Cindy. I'm 25 years old and from San Francisco. I'm new to trading as I just started learning in April. I'm currently working as a full-time pharmacist. I realized that my student debt would take way too long to pay off for the life I want to live. I found out about trading and felt that it would be a good path to head down with the eventual goal of working less hours and having more freedom in life. I was learning from a different community but didn't like the vibe and didn't feel like the members were very supportive of each other. I was also searching for more information to learn when I found Andrew's book and BBT. I decided to try BBT's 1 week trial last week and was blown away by the professionalism and level of support members had for each other in this group. I felt like I learned so much more in 1 week with through this platform than I did in the entire month of April so I HAD to join. I'm so excited to keep learning and growing with everyone! Cindy
  48. 4 points
    Just wanted to come back and answer my own question on this, in case someone else needs it in the future. You can place alerts more quickly now by clicking on the chart. Steps: 1) Right click on a chart > Chart Area > Config Area. Check the box in the bottom-right that says "Enable placing alert on chart". 2) Next, you must create a hotkey (Setup > Hot Key > Add New Item). I have simple scripts for when price crosses above or below my alert price. I'll share them: Price crosses ABOVE alert price: AlertName=newalert;AlertType=LastPrice;AlertOperator=>=;AddAlert Price crosses BELOW alert price: AlertName=newalert;AlertType=LastPrice;AlertOperator=<=;AddAlert 3) Open the Alerts window (Tools > Alert & Trigger). This window NEEDS to be open for the hotkeys to work, so I now just have it permanently fixed in my Desktop layout. 4) Now, when you press your hotkey, an arrow with an "A" next to it will show up on the chart, and you simply click the price where you'd like the alert to be placed. (NOTE: The first time you click, you'll get an error message that says "Placing alert failed". Just click again and it will work. This is a bug and I've reported it to DAS already.
  49. 4 points
    Hello all, I'm David (Smith) so one of the three or four 'David S' in chat. I live in southwestern Connecticut. After a career of 30 years in IT, including consulting and development work, I had just grown weary of dealing with clients on a daily basis. I too have a finance degree as others have mentioned here, but after that fateful first job out of college, I was well down the IT path. Have always had an interest in the markets, and based on proximity to where I live have many friends that are full-time Wall Street types. Started reading and learning about day trading in the Fall of 2016 and began trading exactly a year ago today, so Jan 10th 2017. Would love to say I was a huge success, but had a couple of day trades that I turned into "investments" because I couldn't let go of the loss the day I entered the trade. Only to liquidate months later with much greater losses. By September, outside of my two big mistakes, I was more or less breakeven from a gain loss perspective but my p&l was bad because of commissions. Needed to change up things and looked around for some additional reading material and found Andrew's book. Really like how unassuming and down to earth his approach is and accessible to new traders. Signed up for chat, classes and sim where I traded Oct-Nov-Dec. Back live now in January and working towards consistency. My biggest enemy right now is overtrading, and that is my primary objective for the next few months, take only well thought out trades and don't jump into anything. Really like the chat community and look forward to hearing more about your successes and challenges as we all build our trading competency. Cheers.
  50. 4 points
    Aloha, my name is Paul and I live on Maui. I have been interested in trading for years and finally had an opportunity when I sold my snorkel business. I am a single father raising two beautiful girls (4 and 6) and love that I can be done with my trading day usually before my girls even wake up, thanks to the time difference in Hawaii. I read Andrew's book among many other and really liked his style so I joined his classes and got a simulator account. I traded in the Simulator for 4 months and went live December 1st. I feel so fortunate to have found Andrew's book and day trading, it has changed my life. The chatroom offers great support and camaraderie, I couldn't think of trading without it. Many Mahalo's to Andrew and Pez and all the support staff.
×
×
  • 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.