Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation since 05/17/2021 in all areas

  1. 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
  2. 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.
  3. 6 points
    Updated: 8/8/2019 @ 12:44pm (PST) Finally out of the alpha stage and releasing this to the community, I've been using it with success. Because I had to do some musical chairs with memory I made a configuration utility as the script itself is very ugly. This is more of a BETA release for this, so if anyone wants to try this out in SIM and let me know if you have any issues with the configuration sheet or the hotkeys themselves. It's based on the work started by @fjmocke here: https://forums.bearbulltraders.com/topic/469-das-calculate-shares-based-on-account-risk/ . What it is: It's a hotkey command script that can be used to dynamically alter the share total based on: Available Buying Power (capital) Stop Location (Risk) % Account Risk OR Fixed Dollar Amount The script includes purchase power protection and won't send an order that you can not afford, it does this by calculating two factors: A - Shares You Can Afford B - Shares at Risk Parameter (e.g. $25,000 account equity, 1% risk = $250 risk, $250 * a stop distance of .10 = 2500 shares) min{A,B} = 0.5(A + B - | A - B | ) But, why male models? I just told you. /Zoolander reference You'd use this to calculate your share total based on what you're willing to risk. So instead of blindly throwing 500 shares at every setup, you can dynamically alter risked amount based on the per-trade setup. I use it on my StreamDeck (will also release the icon packs soon) with modifiers of 100%, 75%, 50%, and 25%. 100% is the A-Plus setups I see, those I have HIGH confidence in. Alternatively, if a stock has a large spread or is low-float, I may only use the 25% modifier key for those. Instructions for Configuration: Go to this link: V2.1: DOWNLOAD ^^ Recommend latest DAS version of 5.4.3.0. Requires DAS version 5.2.0.34 or above (current BETA branch as of 11/19/2018) for the physical stop portion to work. If you don't use the physical stop, you don't have to worry about it. NOTE: Thoroughly test in SIM to make sure it's doing what you expect it to do. Choose: Download the ZIP file and unzip to where you want. On "Setup & Instructions" configure your settings. Account Leverage (default for DAS is 4), this is the margin your broker gives you. Some off-shores give 6. It needs to match what is configured in DAS for proper calculations. Max Account Risk %. This is the maximum percent of equity you're willing to risk on every trade (default is 1%). You can always risk lower (more on that later). % of Total Buying Power. If you don't want to calculate based on the total buying power of 100%, you can set this to a lower percentage (example: 100,000 buying power with 60% here equals $60,000 maximum position size) Route. LIMIT, MARKET, SMRTL. Default is LIMIT. Order Bid/Ask Offset. This is the offset you use when you send the price for order, e.g. "Ask + 0.05" (meaning fill me up to 5 cents above ask) Time in Force. Default: Day+ Default Shares. This is the amount of shares you want to set as the DEFAULT SHARES for all trades (e.g. when you click a Symbol and it loads, this is the share total). You can see why this is here in the technical breakdown section below. Minimum Stop Buffer. This is an offset to the stop distance. If you set this to 0.05, it'll add 5 cents to the stop distance calculation (so if your stop distance is 0.05, it'll be calculated on 0.10). Switch to the "Hotkeys" tab. Choose your preferred style. % Risk of Equity (Dynamic) or Fixed Price (e.g. $150 risk). %Equity Risk: Use the drop down to select what you want the value to be % equity. NOTE: This is a modifier AFTER your account risk maximum %. So if you have 1% account risk, and set this to 50%, your effective account risk is 0.005 --> 0.5%. $ Fixed: Use the drop down to select what you want the value to be for dollar risk. Select "long" or "short" to flip the script's direction. Click the cell that contains the start of the command (E column) and Ctrl + C (copy). Paste it into DAS. It should look like a sample command below. Instructions for Usage: First, you must have "Double Click to Trade" turned on in Chart, Right-Click --> Configure --> Settings --> Double-click to trade. Double click the chart where you want to set a mental stop (it does not place a stop order, you can always put one in after). Hit your configured hotkey. Sample Scripts: LONG: DefShare=BP*0.98; Share=DefShare*0.25* Price * 0.01; Price = Ask - Price + 0.02;SShare = Share / Price; Share = DefShare - SShare; DefShare = DefShare + SShare; SShare = Share; SShare = DefShare - SShare; Share = 0.5 * SShare; TogSShare; ROUTE =LIMIT; Price = Ask + 0.05; TIF=DAY+; BUY=Send; DefShare = 500; SHORT: DefShare=BP*0.98; Share=DefShare*0.25* Price * 0.01; Price = Price - Bid + 0.02;SShare = Share / Price; Share = DefShare - SShare; DefShare = DefShare + SShare; SShare = Share; SShare = DefShare - SShare; Share = 0.5 * SShare; TogSShare; ROUTE =LIMIT; Price = Bid - 0.05; TIF=DAY+; SELL=Send; DefShare = 500; Technical Breakdown: DAS has basic scripting. Montage commands have access to very few read/write variables, basic operations, and only operators of addition, subtraction, division, and multiplication. To do this calculation we need additional operators (min function, and absolute function) and more memory for storage of variables. This command gets around these limitations by using user-writeable areas of memory in the program. Since DAS is written in the C++ language (from what I can tell), it's strict on what can be done in these existing memory locations. The hotkey uses the following items (plus the usual Price -- FLOAT): (Assumptions on Datatypes) DefShare -- INT (Used as a temporary variable for storage) SShare -- Unsigned INT (Behaves like an Unsigned INT in certain situations. Used as a temporary variable for storage) Share -- INT (Used as a temporary variable for storage) With the 3 INT variables, objects are moved around in memory so that we can calculate and compare with our variable limitation (be much easier if we could assign our own). To facilitate the ABS() function, we use a trick --> When a negative value is placed into an Unsigned INT it loses it's sign (thus, it becomes a POSITIVE value in memory). A more detailed technical breakdown (step by step) is located in the Configuration spreadsheet up above. Future Enhancements: If need be, I can make a step-by-step video of this entire process. I have a version that uses an AutoHotKey macro to drop a line at the stop location, I can upload that as well if people want it. ^^ Update, I discontinued this as it was too cumbersome. You had to have two sets of hotkeys for each command. I may someday revisit it if I can build out a configuration tool for it. TLDR: It does the math for you so you can risk a known amount (% or $) based on your per-trade risk position (stop distance). And yes, I'm a bit of a tech nerd. Also, longest post .. ever. Would not read again, 0/5 stars. --- KNOWN ISSUES: %Account Risk gets smaller and smaller when subsequent open positions Reason: No Equity variable, we reverse calculate equity using Buying Power. On subsequent positions, the % (e.g. 1%) calculation will be based on the available buying power and NOT the account equity. Workaround: Precalculate the %risk and use it for the $risk versions. So 1% of $25,000 equity equals $250. SSR rejection on LONG position when scaling out; rejection message (e.g. "Short marketable limit order disable due to SSR!") if using the automatic STOP trigger. Reason: DAS calculates that the position will drop below the open stop order position and reject as this can cause the position to "flip" if it was triggered. Workaround: Have a hotkey to clear the open orders (CXL ALLSYMB), clear it, scale the position (e.g. 25%). Either replace the stop or switch to a mental stop. Alternatively, you can add "CXL ALLSYMB;" to the front of the scale-out hotkeys. You just have to be cognizant to replace the stop order. Equated position size if very small (e.g. 4 or 5 shares when expected is hundreds). Reason: Wrong side was used for the order. E.g. a long hotkey is used when trying to go short. -or- Stop Distance was calculated to be a negative value (clicked too close to current price). Workaround: Be cognizant of the hotkeys used and the stop distance clicked. Clicking too close (a really tight stop) can be very dangerous if you do it inadvertently. TriggerOrder for automatic STOP placement not being sent (no stop order placed). Reason: Montage is not set to a style that doesn't allow TriggerOrder input. Styles not compatible are: Default [DAS's, if you changed it], Basic, OCO, Option, Full Fix: Use a style that is compatible, they are: Stop Order, Detail, Trigger -- I recommended using the "Stop Order" montage style. To change this, right click the montage area around where you'd enter a price and select Style --> Your Choice. --- UPDATES: 10/17/2018 - Added v.1.1 link, you'd need to use the new version to change anything. - General cleanup of the script. Added instructions for the IB issue (discussed in this thread) - NEW FEATURE: Added a new section to the Hotkeys sheet, it will now create a set up for Dynamic Scale-In hotkey commands. You'd use these by setting a scale value (say you want an additional 50% of your current position size). The hotkey will calculate the maximum share you can afford (how much you can afford at the moment) and the scale value, choosing to take the least amount. So if your current position is 1500 shares (@ $50.00) and you want to scale in at 50% your current position, it'd check if you can afford an additional 750 shares, if you can't, it'll buy the maximum you can afford. For this example, you can't afford it (if Buying Power is 100k), so it'd buy roughly $25k worth (500 shares). - CLEANUP: Cleaned up the $Dollar Risk version and removed unnecessary steps. Don't really need to replace yours if they exist, but worth noting. 10/30/2018 - Added @Michael P's suggested fixes for Excel. Configuration tool should now work in both Sheets and Excel. - NOTICE: This was a configuration tool change, no changes were made to the hotkey scripts, so no need to change any existing hotkeys. 11/19/2018 - Shortened some of the commands so we don't hit any hotkey character limit, makes them less readable, but shorter. Couldn't get them low enough to fit the montage buttons though (although removing the portions for the buying power rejection protection would likely do it). - Added a section for SELL/COVER buttons for people who just need to create those. E.g. "Sell 25% position" or "Sell 33% position". - Added @Robert H's stop suggestion. New fields on the setup page for enabling physical stops. If enabled, it'll place a MARKET or LIMIT (settings included) trigger order to go into the market once the initial order is fulfilled, these are placed at the location you double-clicked on the chart. 11/20/2018 - Added a stop-order setting to set an additional buffer for the stop price (for those that want to include or exclude the double-clicked price). - Added conditional formatting to subdue the stop settings that aren't required if you disable sending a physical stop into the market. 12/10/2018 - Added a known issues section to this post and the spreadsheet (for when a new version goes up). 12/12/2018 - Updated known issues section to include the "Montage Style" issue for TriggerOrders. 12/13/2018 - Updated to new version 1.46. Fixed a bug in the Trigger Order script which could cause it to not be interpreted by DAS's command parser on certain user settings. - Added "modifier" extra hotkeys. See instructions next to these on how to use them. - - - Set Stop to Breakeven - Long or Short - Stop Limit or Stop Market (cancels any pending orders for SYMB) - - - Set Stop to Breakeven - Bidirectional - Stop Market (cancels any pending orders for SYMB) - - - Stop - Update Price - Long or Short - Stop Limit or Stop Market (cancels pending orders, double click chart where you want stop before firing hotkey) - - - Stop - Update Price - Bidirectional - Stop Market (cancels pending orders, double click chart where you want stop before firing hotkey) - - - Stop - Update Position - Long or Short - Stop Limit or Stop Market - Replace (requires you double-click the original stop in the Orders window) - - - Stop - Update Position - Bidirectional - Stop Market Orders Only - Replace (requires you double-click the original stop in the Orders window). 8/8/2019 - New version 2.0, download the .zip file and unzip it. - Fixed an issue with some hotkey configurations that may have caused them to be inaccurate in vary rare situations. Recommend recreating your hotkeys in this new version, just to be sure. - Added Profit Target hotkeys. - Added % Scale-In Hotkeys - Added $ Risk Scale-In Hotkeys - Added Short-SSR to Long/Short dropdown for SSR hotkeys (DAS Simulator) - Added Range Order hotkeys - Added Y-Margin Scale Increase hotkey, Y-Margin Decrease, and Y-Margin Reset - Added new sheet "Example - Equity%" and "Example - $Risk" to give a more workflow outlook on what is happening. - Included a ScaleOut worksheet to manually simulate what different scale percentages / scenarios look like (instructions will be in the video). ALSO: Video is done and rendering, I think it comes in at 45minutes with 3.4gigs (4k), so it'll need to be optimized before I upload it to YouTube. Will try to do it today and will update this when done. 9/10/2019 - New version 2.1 released. Just general clean up (UI) and bug fixes. - FIXED: Issue with the Scale-In $Risk hotkeys. - FIXED: Issue with the Stop Update Price long and short hotkeys> ^^ If you use either of those, please regenerate them and replace in your DAS to avoid issues. UPDATES: The majority of this side project is completed and besides a few requests I have in with DAS developers to optimize a few things, out of any major bugs or improved scripting features, I'd say this is about done. I'll provide any edge-case support as need, but I want to move on to other BBT-community projects. So what do I have cookin' for you guys, gals, and cat? You'll see a glimpse in the video of an early prototype (buggy! I programmed that in a few hours, so bugs are expected) of a DAS calculator side program. The newer version (need to finish the UI) will incorporate a lot more in ways of tools for you, including automatically calculating changes without a hotkey intervention. It also allows you to mass-process trade log .csv files you may have exported and compile it into Excel or .CSV for import into other programs. Configuration is drag/drop friendly, so rearranging your columns is as easy as click and holding. I'm also going to shift my attention to finishing my ORB-strategy research. Right now, my datapool encompasses 15000 news article, gaplists for 2011-2019, and 1second data for stocks in that range. It's a data store of roughly 80 gigs. The idea is to test for hidden signals we may not see that can indicate a potential direction of an ORB strategy (if no rare outside influence occurs, like a terrorist attack) by leveraging a consortium of machine learning algorithms to give us a higher probability of success for each day. Depending how the research works out, the end product would likely be a probability predictor for each day. I'll share the research results with the community and may incorporate some other tests as well. VIDEO: Ok, so I may have gone down an editing rabbit hole and that took longer than expected. The videos are up, came in quite long so I chunked it down. Sorry it's a tad scattered and not one-linear cohesive unit, but I tried to mark it up as best as possible. Part 1 - Config / Math - https://youtu.be/YrRrydwGyRY Part 2 - Setup, Quick Examples, Tips - https://youtu.be/pXLlWF7T6hw Part 3 - Sim Trade Example - https://youtu.be/SO9UhJh4dTc Bonus 1 - Scale/Price Excel Calc - https://youtu.be/KTr_iJ2p0TU Bonus Tips - https://youtu.be/sNHXFMoia7A
  4. 6 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.
  5. 6 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~
  6. 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
  7. 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.
  8. 3 points
    We're having a Meetup with Andrew in Zurich on March 12th, 2023, 4:00 PM and you're invited! Venue: Aden Hotel Whether you're a pro or just starting out, this is a great opportunity to connect with other traders, learn from each other, and have some fun. So mark your calendars and stay tuned for updates!
  9. 3 points
    In this video AdventureDogLA shows us how to set up Risk Controls in DAS Trader Pro. Risk Controls enforce limitations such as maximum daily loss, maximum shares traded per day, etc. Risk Control Page is a safety net to keep in control our loses, either to have an external control over our behavior as traders or due to a contingency such as failures in the internet connection, electric power outages, broker failures, etc. You can find "Open Risk Control Page" in DAS Trader Pro Account window, just right-click in any row of that window and Risk Control Page will open as a popup browser window to let you update your risk control settings. Some considerations: 1. This configuration works with real accounts and simulator 2. You can deactivate settings "Risk Control Page" anytime by leaving all in blanks and clicking SUBMIT 3. When you are using DAS linked to IB, or simulator, the Risk Control settings are handled by DAS. DAS staff updates your settings manually (the form is emailed to them) anywhere from 2 to 30 minutes during business hours. 4. In LOSS fields, enter a positive number. 5. “No new order” avoids orders for the current day 6. “Pos Loss” = Position loss. 7. “Enable Auto Stop” will automatically close your positions when you hit the Max Loss / Total Loss. 8. “Max Share - Max auto stop execution share per day” = How many shares can be sold / bought by the Auto Stop mechanism. 9. “Max Auto Stop Order Size” = Maximum size per order made by the Auto Stop mechanism. 10.“Delay for next order if exceed max order size (sec)” = Time between orders if the Auto Stop needs to place multiple orders to close your positions. 11. “Stop Gain Account Net Realized PL Thresh“, “Drawdown Percent of Max Net PL“ , “Pos Stop Gain Thresh “ and “Drawdown” - Like Auto Stop but for gains. The threshold is the profit the Stop Gain is looking to hit, the Drawdown is how much it can drop from that target before your positions are closed. Example, you set a threshold of 2000 and drawdown of 20(%). When you make 2000 in P/L, the Stop Gain will trigger, and will close your positions if you drop 20% ($400) from that value, closing you out at $1600 Net P/L.
  10. 3 points
    Hey Everyone, as you know Andrew is traveling, if anyone is interested in meeting up him on Dubai, November 26 for some drinks and talk trading? Date: Nov. 26 2022 Time: 6:00 - 08:00 PM Venue: Koko Bay. West beach Palm - Jumeirah - Dubai - United Arab Emirates Please confirm in this thread!
  11. 3 points
    Fellow Bear Bull Traders, I would like to share with you the Equity Simulator. Another possible name for it could be Expectations Manager. What the tool does: The tool calculates the likely Equity curve and distribution of daily R given the probability of R outcomes in every trade. It also compares the Equity curve when using a Fixed amount R vs using R as a % of Equity. Motivation: As part of my Trading plan, I've set rules for increasing and decreasing position size based on my trading results, as well as moving from Live to Sim and vice versa. But I was feeling that these rules were quite arbitrary - I was wondering how many Red/Green days a week/month I should reasonably expect in the long run, and what kind of profitability I would actually need to meet my goals. Learning how to execute each trade properly is paramount but I felt this would add some perspective and peace ("do I really have to have red days, given my win rate?":) Alternatives: EdgeWonk analyzes individual trades and seeks for potential improvement in entries, exits, and trade management in general. (thanks @KyleK29 for the suggestion) In contrast, this Simulator can't be used for tweaking individual strategies - it focuses more on the bigger picture and your average trading results. It could be however used to compare your results using two styles of trade management - e.g. Style 1 : 60% chance of -1R, 40% chance of 2R vs Style 2: 80% chance of -1R, 20% chance of 4R Further comments can be found in individual cells and on the second sheet. Please let me know any suggestions or questions. Link to the Excel file: https://drive.google.com/file/d/1SUEfrZskJOWpwASR7sUvB2LnOrkxgF2d/view?usp=sharing Have a nice day and don't forget to hold the line! JanJ
  12. 3 points
    Trailing stops are a great tool for a trend trade when the price is moving slowly but inexorably in one direction for a longish period of time. A trailing stop acts as a moving stop loss to protect your profits while also allowing you to secure near the maximum profits of the trend when it reverses. I started using them in SIM today because I recognized that I tend to jump out of trends too early, leaving profits on the table. You can create a trailing stop on both the long and short side in the same way: 1. In your montage, set the order type to STOP 2. In the "Stop Type" drop down, select "Trailing" 3. Just below the "Stop Type" drop-down, the third field over from the left is labeled "Trailer Price", set the value to the amount you want the stop to move behind the price. 4a. If you're setting a stop for a long position, click "SELL" - You should now see an order sitting in your order window 4b. If you're setting a stop for a short position, click "BUY" - You should now see an order sitting in your order window A trailing stop always stays a set value below the current price, so for example, if the price is 4.20 and you set a Trailer Price of .20 on a long position your stop loss will be at 4.00. If the price goes up the trailing stop price moves with it, but only in one direction. So for example, if the 4.20 stock moved up to 4.30, the trailing stop would would move to 4.10. If the price subsequently moved down to 4.15, your trailing stop price will stay at 4.10. The trailing stop price will always be set based on the current price, so be careful to look at the current price and movement on the 1 minute chart, the stop will trigger the moment the price tics back to the stop price. For example, if you see the 1 minute candles varying about 10 cents per minute on the trend, a .05 trailer price will probably trigger too early. Make sure you're setting your trailer price to a value that protects your profits without prematurely closing your position when the trend would likely continue. I will update this thread with real chart examples. I also have a hotkey but I want to test it in SIM Monday before I post it here. Edit: How to create a hotkey to set a trailing stop.
  13. 3 points
    As previously said you need not only a set up but also an entry strategy, and trade management strategy including you target ( a level, MA or 3R) where to partial, do you move SL to BE or you partial at 2 or 3 R and then you move your SL or it could be all or nothing ( 3 R without moving SL.). The goals at early stage is not how much money you make but getting familiar with the platform, defining a trading process , get enough screen time, learn price action, L2 and T&S, identify which set ups you trade the best and which you are not good at and scratch them, building a journal and sound review process. Money comes naturally once you master the above. We all start with the mindset of the outcome but in trading the process oriented approach is the way to success. You are not doing wrong, it is a learning curve, you enter in a good trade, couldn't manage, so now your improvement goal will be to define exit and partial strategy. Don't expect to be able to hold the entire move, it will take time, we all start scalping and shorter TF and once we get some experience we move to bigger TF and look for set ups there to get the bigger moves. Don't beat yourself. You did it great! I couldn't see any set up for much longer than 3 days when I started.
  14. 3 points
    You can right click on the chart area then select Data Config, and make sure you have a check mark on "Show Pre/Post Market" (Red Circled Below) Best of luck.
  15. 3 points
    The Money Zone is where 70% of the volume was traded on a given day. It can use it with das trader. Its in the study config/volume by price/config button and check the show volume area box. to use it go to the previous day and mark the value area high, value area low. you can then use the marked area to judge the type trading day for the upcoming session. in this example NIO is opening above vale and above yesterdays range. this signals bullish strength and should have you looking to take a long position if your bias is confirmed. This can also use this with a longer time frame. when we go back 5 days and see NIO has been consolidating. Mark the Money Zone area for this expanded timeframe and you can see after 3 days NIO dropped below the lower value area and quickly bought back up to the top of the value area. the next day NIO sold off in the morning and was quickly bought back up to close above value . This is signaling a possible rejection of value and a possible move to new value ahead. another confirmation of strength in this move is the pivot point relationship. it is an inside value relationship with a narrow pivot range further confirming the possibility of searching for new value. as we can see it didn't even stop to test the value area high before looking for higher value area.
  16. 3 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
  17. 3 points
    I like to create custom spoken alerts using Amazon's Polly. (my favorite voice is Emma). My most recent custom alert audio (and new favorite) is attached as an mp3. If you want to add it to your alerts, you will need the WAV file which is located here: DOWNLOAD "STOP TRADING" ALERT WAV Then place the WAV file in your DAS main folder and set up your alert as shown in the attached screenshot. Russell Landwehr Stop Trading alert.mp3
  18. 3 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
  19. 3 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!
  20. 3 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
  21. 3 points
    Hi Zack This is a B/E stop market order: ALLSYMB;Route=Stop;Price=AvgCost;StopType=MARKET;STOPPRICE=AvgCost;StopPrice=Round2;Share=Pos;TIF=DAY+;Send=Reverse;ROUTE=SMRTL I guess you just need o change StopType to LIMIT ALLSYMB;Route=Stop;Price=AvgCost;StopType=MARKET;LIMIT=AvgCost;StopPrice=Round2;Share=Pos;TIF=DAY+;Send=Reverse;ROUTE=SMRTL Not sure if you can use Price=AvgCost+.05 maybe you can test this in the sim and let us know if it worked for you.
  22. 2 points
    Just to confirm, the proper order is: 1. double click the StopLoss price 2. hit the entry button (order fills) 3. hit the exit button (without clicking on anything) 4. go for a swim in the pool 5. come back later and count your money I'm glad to give back to the community. (and programming hotkeys is fun!) Good luck! Russell
  23. 2 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!
  24. 2 points
    Howdy @cjames05, @DollarBill @Austin D Let's do a zoom, yall want to do a first Google Meet (I've got an account so no timelimit). DollarBill I think is saying is out until Jan 5th. How's Jan 6th Fri evening? Or Sat Jan 7th AM? Hit me up via email at [email protected] as you get this and I'll start a group email if ok? I am not always in forum. Thanks Michael (Thornton, CO)
  25. 2 points
    Hi everyone and welcome to our new forum on swing trading. As you likely know, swing trading involves taking positions in a stock or other security and holding that position for as short as overnight to days or weeks or even longer. If you are new to swing trading and want to learn more, reading Brian Pezim's book "How to Swing Trade" would be a good starting point. It is available on Amazon. We expect this forum will be used by our members to present and openly discuss swing trading opportunities. The one advantage of swing trading is that the trader has the opportunity to slow the decision process and plan their trades without having to make a quick decision on whether to enter a trade. Thanks in advance for being part of this forum and we hope this forum can offer up some profitable opportunities for our members.
  26. 2 points
    Hola, amigos, creo que no me había presentado, aunque ya llevo rato aquí. Mi nombre es Josué De Lara, soy de México donde vivo actualmente, aunque la mayor parte de mi vida la he pasado en Texas donde estudie desde la preparatoria hasta el doctorado. Me interese en el “daytrading” gracias al libro de Andrew, me fascino. Me gustaría mejorar en el daytrading con el propósito de mejorar mis ingresos, ya que en Latinoamérica no son muy buenos aún con grados académicos avanzados. Hice una hoja de calculo para calcular la cantidad de acciones a comprar de acuerdo con la emisora. Me es útil ya que utilizo TWS en vez de DAS y no puedo usar las “hotkeys” de Kyle. Espero le sea útil a alguno de ustedes. https://docs.google.com/spreadsheets/d/1ElLZ2h41da1xgtz6KI_Df0PeqP754kRMDhJe60aefL4/edit?usp=sharing
  27. 2 points
    Hey guys, I just recently started building my own trading bot in python using IB's API. Anyone else working with bots right now? Could be nice to share info or just keep in touch for help/ideas/motivation. Thanks!
  28. 2 points
  29. 2 points
    To complete the rider agreement DAS Trader - Interactive Brokers IBKR: the first two slots is today's date the third slot is DASTRADER and the forth slot is you U account numbers you will only sign the customer side and upload, don't worry about IB side signature, it will be sent after upload to IB to fully connect the account
  30. 2 points
    Hey guys, My name is Chris Bowling. I am excited to meet and get to know others in the Bear Bull Traders community. I already love Day Trading and I am committed to learning and growing. A little bit about myself. I played a trading card game when I was a kid, won the U.S. national championships, and became one of the best players in the world. In my early 20's, I found poker and became profitable after 1 month of playing. Since then, I have played millions of hands, and still play for a living, playing 5-6 tables online when I play. In the last 5 years, I have really got into investing and have read all kinds of value investing books, build DCF models, and really just love everything about the market. I found Day Trading recently and just got my simulator up. I can already see tons of parallels for me with poker. I feel Day Trading is similar to what I already do, but I can potentially compete for more money. Becoming a profitable Day Trader and living that lifestyle would be a dream come true to me! Look forward to learning and growing with everyone else! I except to post lots of questions in the forums and look forward to chatting with you all! -Chris
  31. 2 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!
  32. 2 points
    One screen for DAS, and maybe one screen for screeners and the chat room. However, info overload definitely will kill progress and create horrible habits. I think you might find, like many others, even having the chat room up is too much. Especially at first.
  33. 2 points
    100% agree with @peterB ... At the begining of your trading career, one screen is more than enough as you still need to start the learning curve with hotkeys and the platform + the chart reading + pattern recognition + L2 reading + etc Whenever you start doing some more practice, you can jump into a setup of 2 monitors or just 1 bigger one. It all depends on many things and IMHO is too personal to decide based in anyone else experience. I totally disagree with the idea of having 4 screen at the same time. Too much info. Only "professionals" with +5 or +10 years of experience will manage that amount of information properly. Most of the cases, they will do more wrong than good.
  34. 2 points
    I will point out that this isn't necessarily new, I just wanted to figure it out for myself and my exact situation (I learn best that way). I know there are references in other posts to similar scripts (maybe even ones that do the exact same). If there is one out there, please don't assume this is plagiarized
  35. 2 points
    So I have to give credit to @KyleK29 for helping me a few mornings just before the open to get these working. Thank you so much Kyle for helping me along. At the time of writing this I'm using Das Trader Pro version 5.6.4.11 I'm a dad with 3 little kids. I'm still in paper trading phase and I don't feel like I get enough practice during the opening before I have to get the kids ready for school. So the replay mode is key for me to be able to continue my practice after hours. These scripts are a mod on the scripts provided in this post I am mainly using the % scripts but I also made this work for $40 R entry. Explanation Original 20% Long Script (Stop only works during open market) StopPrice=Price-0.01;DefShare=BP*0.97;Share=DefShare*0.25*Price*0.002;Price=Ask-Price+0.01;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=400;TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice-0.3 ACT:SELL STOPPRICE:StopPrice QTY:Pos TIF:DAY+; The part that needed to change was at the end where DefShare=400 So we replaced this... DefShare=400;TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice-0.3 ACT:SELL STOPPRICE:StopPrice QTY:Pos TIF:DAY+; With this... DefShare=Share; Route=Stop; StopType=Market; Share=DefShare; TIF=DAY; SELL=Send; DefShare=10; And presto! Stop orders now work in replay mode. Here's the Short version DefShare=Share; Route=Stop; StopType=Market; Share=DefShare; TIF=DAY; BUY=Send; DefShare=10; Here are the scripts I'm using KEEP IN MIND THESE ONLY WORK IN REPLAY MODE!! DO NOT USE THESE FOR LIVE TRADING!! I ACTUALLY DON'T KNOW WHAT WILL HAPPEN BUT KYLE WARNED ME! LONG 20% StopPrice=Price-0.01;DefShare=BP*0.97;Share=DefShare*0.25*Price*0.002;Price=Ask-Price+0.01;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=Share; Route=Stop; StopType=Market; Share=DefShare; TIF=DAY; SELL=Send; DefShare=10; 50% StopPrice=Price-0.01;DefShare=BP*0.97;Share=DefShare*0.25*Price*0.005;Price=Ask-Price+0.01;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=Share; Route=Stop; StopType=Market; Share=DefShare; TIF=DAY; SELL=Send; DefShare=10; 100% StopPrice=Price-0.01;DefShare=BP*0.97;Share=DefShare*0.25*Price*0.001;Price=Ask-Price+0.01;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=Share; Route=Stop; StopType=Market; Share=DefShare; TIF=DAY; SELL=Send; DefShare=10; $40 StopPrice=Price-0.01;DefShare=BP*0.97;Price=Ask-Price+0.01;SShare=40/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=Share; Route=Stop; StopType=Market; Share=DefShare; TIF=DAY; SELL=Send; DefShare=10; SHORT 20% StopPrice=Price+0.01;DefShare=BP*0.97;Share=DefShare*0.25*Price*0.002;Price=Price-Bid+0.01;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=Share; Route=Stop; StopType=Market; Share=DefShare; TIF=DAY; BUY=Send; DefShare=10; 50% StopPrice=Price+0.01;DefShare=BP*0.97;Share=DefShare*0.25*Price*0.005;Price=Price-Bid+0.01;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=Share; Route=Stop; StopType=Market; Share=DefShare; TIF=DAY; BUY=Send; DefShare=10; 100% StopPrice=Price+0.01;DefShare=BP*0.97;Share=DefShare*0.25*Price*0.001;Price=Price-Bid+0.01;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=Share; Route=Stop; StopType=Market; Share=DefShare; TIF=DAY; BUY=Send; DefShare=10; $40 StopPrice=Price+0.01;DefShare=BP*0.97;Price=Price-Bid+0.01;SShare=40/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=Share; Route=Stop; StopType=Market; Share=DefShare; TIF=DAY; BUY=Send; I hope this helps someone! Please let me know if you have any question, tips or suggestions!
  36. 2 points
    Hello everyone, I joined BBT on January 1st of this year and it has definitely been an amazing decision! Prior to joining, I was subscribing to the YouTube channel and pre-market prepping with BBT on my Trading days (Thursday Mornings and Fridays) for about a good 6 months prior to pulling the trigger and joining BBT. October of 2019 marks the start of my learning journey. I have been on a mission for a few years now trying to find my way into entrepreneurship. I picked up some random books at the library after hitting some brick walls in my endeavor for some time. (The primary struggle being risk aversion due to my low income.) I had zero experience with the stock market and trading, but I keep a very open mind and decided to start reading a book on Trading Options. I was immediately enamored with this book and the newfound world of trading. The biggest draw being that one can learn without risking much or any capital. That concept was mind-blowing to me. I was in another trading group prior to this one and did not have a positive experience socially. I was essentially ignored or bullied for being a female. There was no in-between experience in which I felt like an actual member. Unfortunately, it is a common experience for other females in this field. In general, I have done a lot of work on myself to overcome social anxiety/low self-esteem issues so as you can imagine, the way I was treated was very damaging. I am very much a fly-on-the-wall here but am looking to change that. I know that it is essential to my success that I start socializing with like-minded individuals. I don't anticipate being bullied here but the hesitation to participate is still there. Thus far, learning to trade has helped me grow as a person. I have learned to put myself out there and take risks. In my previous group I learned to trade bear and bull triple leveraged ETF's for Natural Gas and caught on quite well, only trading the bearish ETF successfully (against the bullish trend). I was impressed, especially considering the fact I had zero structure or actual defined strategy in place. Those ETF's no longer exist, which is a blessing, because that has lead me to BBT and the concepts of finding stocks in play, structure, and probability amongst other critical things. I am currently testing my second strategy and hoping that this is it. The time and data will tell me the answer. I went into Trading with the idea that it could take me a couple of years to learn. I'm coming up on that 2 year mark, and loving and respecting the process of learning to become consistently profitable. Although I haven't found my strategy yet, I feel confident that I will. One idea I wanted to share that seems to be extremely helpful for me is recording my trading sessions. Once I started doing that a few months back, I feel that I am learning what works and what doesn't far better and faster. It is one thing to journal and look back at your trades with a snapshot and your afterthoughts but completely far more enlightening to essentially relive it as an observer. Although, I am only trading 2 days/week or less, I feel that reviewing my trading sessions via recording is really my game-changer. It truly has taught me that it isn't necessarily about the quantity of trades I am able to make, but the quality of my journaling and lessons from the experiences I've had.
  37. 2 points
    Dear everybody, My name is Mauro, 36yo. I am Italian working in Germany as engineer in the space industry. I got very fascinated by the trading so I decided to give a try to this new possible career. However, since the first I have found difficulties due to my first job, which is based on careful risk assessments for everything and no room for errors. I decided to join a community, but unfortunately things got even worse: i have learned a lot of things but they were too focused to "don't loose money".. so i have started to trade "not to loose"... that was very painful for my self confidence. I took a short break and changed community looking for a better match with my personality Now it's been a couple of months that I am part of bearbull and i decided to have a new start I like this new environment! See you in chat and in the forum!
  38. 2 points
    I ran into a problem when I changed the target to 1.5 (instead of an even number) (I also changed the script to a market entry instead of limit) anyway, the problem: Randomly the TriggerOrder wouldn't flow. It wouldn't give an error or anything, it just wouldn't show up. I fixed the problem by adding Price=Round2; after the StopPrice*1.5; (and also in the same place on the Short version of the script) Now the TriggerOrders execute smoothly every time. Best, Russell Landwehr
  39. 2 points
    TastyTrade is legit and Tastyworks is also amazing. They make the whole option process so simple. With theta being a factor in spreads, it really makes swing trading much more controllable. As for the OP, I'm assuming they are talking about Long OTM Call options. If you for some reason come across a stock that is slowly trending down, and for some reason you know that it is about to have a major bounce, then you can get OTM call options for extremely dirt cheap. Make sure that the expiration date is 56 days out or more otherwise you may not see an increase in the price of the OTM Call option even if there is a major bounce. Also make sure it is 56 days out or more because the theta really starts to work against you any sooner than that, so there is significantly less love in being wrong on the timing of the bounce. It is a good idea to have a delta of .15 or higher because of the aforementioned lack of responsiveness to price movement if it is too unlikely to hit the strike price. IMO it is probably better to get an OTM call option that has a very good chance of being in the money at the top of whatever bounce you are expecting, so that you can hold onto it if the trade continues to work. If you don't do that then the theta and implied volatility will swiftly chop your profit and your head off in the middle of the trade. Also trade management for Long OTM options (with a relatively close expiration): profit NOW is way better than profit later. Unless you are in the money: then profit now is still better than profit later. If you think you'll make an extra 15% if you hold on, just get out. If you think you'll make an extra 100% if you hold on, then consider holding it very strongly, and then sell half. Also anyone that says you can't make money consistently from long call options (including Tom Sosnoff) is almost always talking about at expiration. Duh. It is true that it is difficult to make money with OTM call options because there are lots of factors and you need to be right basically immediately. However, not for one second, does that mean you can't do it consistently. It just means you have to do it with these things in mind. I'm not an expert, but I did make 25k in two weeks from 3k with OTM options once. LOL.
  40. 2 points
    Sorry for the delay, I missed your post last month. Yes, I have been through the same dilemma as my job changed and I was unable to trade my most profitable setups which are usually after the first hour of trading. This is common and one of the coaches at Day Trading Academy, where I am taking courses, also made that transition from day to swing trading successfully when teaching would interrupt his trading. Yes Brian's book is very good. I also recommend taking an Udemy course of your choosing on chart reading. The lessons I have learned: I see that you won't trade single stocks. That is good. It seems for about a year I have needed to check the price of stocks (at least on my phone) during the day to optimize profits. ETFs need less observation. Learn 1 to 3 ETFs really, really well. If your account is too small to take shorts than please stick to ETFs that have an inverse ETF with good liquidity as well. Careful learning ETFs that are well correlated. Like SLV and GDX will be too well correlated. Don't use leveraged ETFs. I use to, but they would always gap well beyond my stop overnight. In general I would lose half my profits with these huge gaps. Use options whenever possible. So if you are wondering if you can make decent money NOT trading stocks and NOT trading leverage ETFs, well you can’t. That’s where options plays a part. I use vertical spreads a lot. It gives me the leverage and you can lock in the risk. Best of both worlds. But that also means no homeruns with vertical spreads. But I am not into getting that one big trade that makes my month. I like the slow accumulation of profit. Since many ETFs are very liquid, it is easy to get fills with options. It is not impossible to get catastrophic price fluctuations with ETFs. Especially commodity ETFs. I quit swing trading for a year after BE (not an ETF but a midsize float stock) dropped -20R passed my stop overnight. I didn’t get back into swing trading until I understood options better to prevent that. I always place my stop order right after my buy/short order is filled. I find it easy to take a stop day trading. But I find it more difficult taking the stop on swing trades. So I must place the stop order right away. Check prices of your positions in premarket not after the market open. It is surprising how many position partials and closures I take in PM and I am glad I did. Please have an account that you can trade before/after hours. Etrade has a paper trading account that was useful during my learning phase. Choose an ETF that you have some interest in. If you like coffee maybe ETFs JO or CAFE may interest you (gotta love those names) plus you will enjoy keeping current with the eco-political events that effect your ETF. I hope you find something useful in the above list. Rob C
  41. 2 points
    I too hope this thread is still alive. I work a full time job. My boss is kind enough to let me take an "early" 1 1/2 hour lunch break. I'm on AST where the market opens 10:30 am local time. I jump in the car at 10am, drive like hell to get home at 10:20, flash up my trading station, copy the stocks in play, set my levels and am ready 2 minutes before the open. I trade for 25 minutes, but it's the best time of the day to trade. Opening range / ABCD/ parabolic reversals. Then back to work for 11:30. I review and journal my trades each night. It's hectic, but at least I'm trading and progressing. I've been doing this for a year now. Not easy, but if you can find a way to trade the open, it's worth it. Build your account till you can trade full time. Good luck you guys...if you (we) can trade and work full time, think how great it will be to trade full time without that pesky day job!
  42. 2 points
    This feature was recently added in version 5.2.0.14 (check your version by going to Help> About). In the Account window, right-click the account and select Reset BP/Equity. Update your Equity, Daily BP, and Over Night BP.
  43. 2 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.
  44. 2 points
    Good news, I fanally solved my problem. Since IB where busy with the Covid-19, it took me 3 weeks in total to make all arrangements and have my USD account working. First, I took out my CAD $ from my IB account. I've then opened a USD account over the Internet with my current Royal Bank of CANADA but it did not work. They could not make a USD transfer to a Canadian provider since it was going to convert my USD deposit to CAD and I could not link this account to IB. They had to transfer me to another department for USD account with RBC in USA. I then checked with Bank of Montreal where I have another account ond opened a USD account. Took me 2 minutes over the Internet. I then linked my account directly with IB. After the verification, I was able to make a deposit in US to my account. Now, everything is working perfectly, I don't loose even 1$ from my gains. Hope this topic could help someone.
  45. 2 points
    This exists now. In case anybody finds the above instructions confusing, here is the step-by-step on how to set up "click and add" price alerts. 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.
  46. 2 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.
  47. 2 points
    Hi All, I created this topic so that Trader's can share their real time experience/journey in the world of Live Trading or with Bear Bull Traders. I find myself fortunate to be able to share my story as well as my 2 cents on the learning I have had from the mistakes till date. To start with, a brief about myself : My name is Paras Jandwani, 29 yr old, basically from India but have been settled in Washington DC, USA for the past 5 years. I have been working with a Tech company named Accenture (Yep, not a full time Trader yet) as a Solutions Business Consultant for the past 9 years. From a very young age itself I was interested in Stock Market, following tickers and watching business programs etc. However, for some reason may be social pressure could never make a career in finance (no regrets though). Anyways long story short I opened multiple trading/Investing accounts back in India and invested money based on the FURU alerts or speculation. I eventually blew up my account 2 times leading me to take a break from Trading. Trading Journey with Bear Bull Traders (then "Vancouver Traders") It is always said that you can suppress your passion but can never wipe it out from your life. Since I had already moved to USA, the passion of making a living out of the stock market led me to look for options available to me to learn and explore the US Market. It was around August 2017 when I found your book on amazon with the title "How to day trade for living" which I thought exactly met my need. I immediately bought it and was impressed with the simple concise way the book was written and detailed about everything that needs to be performed step-by-step to become a Stock Trader. Currently, with the huge amount of options, with data available on google, the beginner's struggle a lot with what needs to be performed and are really confused if anything offered to them is genuine or not. The book written by you clarifies all of these confusion and give a very clear head start for beginner's trading career. After I read the book, I immediately joined the Bear Bull Traders (then Vancouver Traders) community in September 2017 and followed almost every small suggestions/guidance provided by you in the chatroom. I traded in SIM for 4 months and went live in Feb 2018. It's been almost 9 months live (every trading day from 8:30 am to 12 pm EST) and looking at the past where I was down with more than $ 6k in losses around the mid of June 2018 and gradually coming back to break even in Aug 2018 and currently sitting at a net profit of $ 3.5k.The figures might not seem big as I have always been a very risk averse Trader and when I started I used to trade with a volume of 20-50 shares for high priced stocks such as TSLA and 100-200 shares for mid-float stocks (I never traded low-float stocks, till date). Currently, I easily trade 500 - 750 shares/trade for mid-float and 200-300 shares/trade for high priced stock. I think every trader has to pass through a learning curve and should respect the process. I have made my own mistakes and learnt from it. I am still learning every day and happy to be able to lead my passion. Hope to be successful one day and trade full-time. Below are some of the items that I learnt during the process : 1. You just need to master 1-2 strategies to be able make consistent money. (I tried multiple different strategies (not just from the book) to create an edge and ended up with being more confused) 2. Volume sizing should be a privilege and should be increased gradually in 10-20% every time when you are confident enough.(At the time, when I started making consistent profits with small volume of 100-200 shares I immediately started trading with 500-600 shares at a time which led to a lot emotions taking over leading to consistent losses) 3. Say NO to Averaging Down ( This type of trading saves you almost 90% of the time but would wipe out months of profit in a single day when it doesn't work. Been there and learnt it the hard way) 4. Higher number of tickets DO NOT guarantee higher profits. (I have a rule to Stop trading once I achieve my profit target or my max loss or 30 tickets/day. Number of tickets/day have saved me rule has been a very important for me to take selective trades. I remember my reckless/revenge trading having 223 tickets on one of the trading days which cost me hundred's of dollars in losses.) 5. Rules are meant NOT to be broken. (Almost every single time I broke my rules I paid the price for it) 6. Being patient with the winners and impatient with the losers. ( Almost every single trader faces that. I was very impatient with the winners and patient with losers which made my losses bigger then my profits) 7. Setting the stop loss right to either an indicator/support/resistance level (Had a very bad habit of setting the stop loss at the level based on the loss I was willing to take) 8. Importance of Journaling. (I use a software named Edgewonk for Journaling. My past chunk of trades gave me the indication that my win rate between 9:30 and 10 am is 76%, between 10 and 10:30 is mere 24% and 10:30 to 11: 30 is 64%.This was an eye opener for me. I almost immediately stopped trading between the time where my win rate was the lowest. This really helped me in maximizing my profits) All the above mentioned experience wouldn't have been possible without a person who is a guide and a mentor, none other than Andrew!. I hope to continue learning from him and find myself fortunate to be a part of an amazing trading community.
  48. 2 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.
  49. 2 points
    Hi Everybody! My name is Ryan (Ryan W in the chatroom). I live on Long Island, NY and I'm an IT consultant with my own business. I have been in IT for about 15 years now (I'm 32 and got started when I was 15). I have Bachelor's Degree in Business Management with a concentration in Information Systems. I have always been interested in trading. One of my best friends is Jesse Colombo (look him up). He introduced me to trading and finance in general while we were in high school, but of course I was only concerned with girls at that time lol. As I got older, I realized how interesting the markets are. I love staring at charts and trying to understand the underlying sentiment and what is happening on the screen. I started swing trading more actively in 2010 and was basically just treading water. I wasn't a fan of the overnight risk and after having awoken to several of my positions being down due to news or earnings, I realized swing trading wasn't great for me. I started to look into day trading. I got involved with Trading Education company here in NY and provided IT services for them. I was exposed to day trading more and was really enthralled by what was happening. Of course, this particular company wasn't known for the most honest and realizable trading education, so I took what I saw with a grain of salt. I received some exposure to some really great traders and mentors though, but their strategies and styles never really worked for me. After almost 4 years of day trading and having whipsaw emotions and losses, I am happy I found Andrew. I bought his book and was literally on the verge of giving up, but seeing how he trades and understanding his style and strategy has helped me immensely! The IT field has changed dramatically from when I first got started, even when I was in school (seems like a million years ago) and I am just sick and tired of it. I have been wanting to switch over to full time trading for years now, but the strategy I was trying to make work never worked. The person that taught me doesn't trade this style (even though he teaches it) and it just ended up costing me a lot of time and money. Now that I am on the right track with Andrew, I really hope to move over to full time trading sooner than later. Since I work for myself, I am able to balance trading and my clients. Of course, some days that's not always the case, but it does give me the opportunity to have the exposure I need. I look forward to working with everybody both here in the forum and in the chat!
  50. 2 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.
×
×
  • 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.