Leaderboard
Popular Content
Showing content with the highest reputation on 11/09/2019 in all areas
-
1 pointUpdated: 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
-
1 pointSince this subforum is by far the most active, we've stickied this FAQ which contains links to individual posts. This post will be updated regularly. [Last updated: May 17, 2021] DAS Trader Downloads DAS Trader Pro Production Releases for Interactive Brokers DAS Trader Pro Production Releases for CMEG BBT DAS Simulator Production Release (ONLY IF YOU GOT DAS SIM THOUGH BBT) When doing an install of a new version, it is always a good idea to back up your settings! DAS Trader Pro references, education and support OFFICIAL: DAS INC DAS TRADER PRO - DEMO Tutorial - How to Correctly Use DAS Trader Pro User Guide and Manuals DAS Trader Official YouTube Channel DAS Weekly Free Q&A Webinar DAS Trader Pro Knowledge Base DAS Trader Pro Risk Control explained in Knowledge Base. Common DAS Trader errors No More Order Server to Connect’ error message ‘Wrong Trader’ error message “Lost Connection to Quote Server” error message General Where can I subscribe for DAS Trader Pro live account for Interactive Brokers? How to Change Your Equity and Buying Power in Simulator How to Switch Between Live and Demo Accounts Update/Upgrade DAS To Latest Version Understanding the DAS Account Report DAS Deluxe Package - Switching Options L2 for ARCA Book DAS Trader on MAC OS also see DAS Trader FAQ > 5. SYSTEM REQUIREMENTS How to link symbol selection in Trade Ideas to DAS How to set a price alert in DAS How to add Audio Alerts in DAS How to Configure DAS Mobile for Android or iPhone Definition of Time and Sales Flags How to use the DAS Risk Control Page List of Index tickers (SPY, DJIA, NASDAQ, RUSSELL, etc.) How to Make a Pre-Market Scanner in DAS DAS Trader Videos Playlists in YouTube DAS Trader Tutorials (basic DAS Trader configuration) DAS Trader Pro Instructional Videos (Advanced DAS Trader Features) Market Replay Mode How to use new DAS Trader Market replay feature Montage, Windows, and Layouts How to Make Your Custom Layout Load as Default on Startup How to link Montage to Time&Sales and Charts? How To Setup Multiple Monitors in DAS How to Duplicate a Montage, Chart or Other Window Montage / Level 2 color and shade settings How to Quickly Add Rows to Watchlist (Market Viewer) How to Change Order Button Colours (BUY, SELL, SHRT, CXL, RPL) Select Active Montage to Trade Definition for each of the Level 1 (L1) fields at top of Montage How to select the montage before placing a trade How to use the New L2 Highlight Feature in DAS Trader (YouTube video) Charts [VIDEO] How to configure charts in DAS Trader Pro: Education Center How to Add Index Tickers for SPY, DOW, NASDAQ DAS Trader Tutorial – Make Your Chart Look Like Andrew's How to Add Average Line to Volume Study How to Drag and Drop Horizontal Lines How to Transfer Price Levels to Another Chart Drawing Support and Resistance Lines in DAS How to add previous day close (PCL), high of day (HOD) & low of day (LOD) How to Prevent Chart from Zooming out When Switching Symbols How to Add/Remove Trade Icons on the Chart Show trade info on chart (triangle click) How to Increase Y-Axis Scale to See More Price Levels / This can now be done with the newer versions (5.4.0.0+) of DAS using hotkeys Change Default Number of Candles How to add Relative Strength Index (RSI) to Chart How to Draw a Diagonal or Sloping Line How to Change font size in Chart How to add separator line for Pre-Market (Open) and After-Hours (Close) How to correct short/small candlesticks by excluding Studies from Y-Axis Scale (Y LOW, YY HIGH, etc). How to Zoom in on Specific Area of Chart Why is VWAP sometimes different between 1-minute chart, 5-minute chart, and/or Montage? How to add vertical lines on 1-minute chart to show each 5-minute period How to add Average True Range (ATR) to DAS Daily Chart How to add and use Volume by Price study How to add bid & ask to your charts How to add RVOL in DAS? Exceeded max number of global trend lines Order Entry Placing Orders in DAS Trader Pro Trailing Stops How to Lock Your Montage How to set a Bracket aka Range aka OCO order (includes hotkeys) Hotkeys and Hotkey Buttons - Always test your Hotkeys in simulator Most frequently used hotkeys Terminology Clarification: Hotkeys vs Hotkey Buttons Programming hot key for stop loss Buy/Sell Hotkeys for Automatic Stop Loss How to Create HotKey Buttons on the DAS Montage Level 2 Window Hotkeys for Flipping Position Hotkey for buying based on a percentage of Buying Power How to Adjust Montage Hotkeys Button Size What does the Panic hot key do? How to set up hotkeys for trailing stops Hotkeys for adjusting share size How to create hotkey which launches Finviz page for a selected stock Hotkey for automatic share size based on max dollar loss Hotkey for automatic share size based on % loss of account How to short stocks in SSR: see here and here Thor´s Freeroll Hotkey DAS Trader Pro Support Live Chat Support Das Trader contact page to send messages DAs Trader Support Email DAS Hotkey Line Style Configuration tool.
-
1 pointHave you ever exited a trade too early because you didn't see a price level just beyond the horizon? Do you find yourself zooming out constantly, or switching to hourly/daily charts to identify upcoming price levels? Well, you can increase the Y-axis margins to allow for a larger vertical range to fit on the chart. Here's an example. The default margin setting in DAS is 10%. This gives a pretty good scale in most cases. Here the price of GCAP is hitting 8.94, with the bottom margin at 8.85. This is the same chart with the margin set to 40%. Another price level down at 8.65 becomes visible! Also note that you can now see VWAP at the top, which was out of view in the above chart. To adjust the margin: Right click the chart area Click Configure In the Margins settings on the right hand side, change the value for Price axis top bottom margin Please note that your candlesticks will become slightly shorter to fit the new y-axis scaling. I've tested different values and found 30% to be a good setting for me. Play around and see what works best in your DAS layout.
-
1 pointHere is a useful tip for how to change the font size in your charts. Right-click Chart > Configure On the left-hand size, click the box to the right of Label (Price/Time) Change font accordingly The font should now be changed for both the X and Y axes.
-
1 pointI'm a pretty heavy user of trading sim, and there only seems to be a bit of scattered info on it in the forums so I thought I'd post a detailed thread here along with some recent improvements they've done. For those who don't know, TradingSim (www.tradingsim.com) is a dedicated replay paper trading platform that runs in the browser. One can choose any date, setup a watchlist and playback stock data. There are buttons for play, pause, step to next candle, speed up, slow down etc. You can set your account size, buy, sell, short, limit and stop orders are all there. The advantages of using such a platform: Trade outside of market hours Drastically increase the amount of practice trading for a given time of day (for instance the open) Trade in different market conditions Use it as a research tool to study historical data, refine patterns and strategies, etc. One of the main drawbacks that people have commented here on the forums here is that it does not have pre-market and post market. They have since added this a little while ago. I'd say the only key thing that's still missing is level 2, although they do have order flow; and that also shows the current spread. There is obviously no premarket gapper scanner or anything like that. For trading practice I simply look up the respective recap from Andrew on youtube in order to get a watchlist. I spent quite some effort getting this das-like, and I'm relatively happy with the result. Take a look for yourself, and note that my DAS setup is slightly different than Andrews (I use green candles, different thickness MAs). Like DAS, there are a lot of options, it takes a little while to find everything you need. One rather critical option that vastly improved it for me was the 'Scale series only' under the 'Scale' of the chart settings. This stops the chart zooming out to fit the 50 and 200 SMA when they are out of screen. Just like DAS you can mark your charts with relevant levels from the premaket or daily, levels can be moved across charts via one by one via a copy-paste type functionality, but given the amount of clicking involved it's just as fast to draw them again. Some of the drawbacks the platform still has: Calculation of the VWAP in the pre-market is incorrect (I am currently in contact with them about this) No level 2 Hotkey functionality is a bit weak compared to DAS For active trades, it shows your average price on the chart, as well as relevant limit/stop orders, which is pretty cool, however once a trade is closed, there are no triangles to show you your orders. This makes it difficult for reviewing trades. This also facilitates overtrading or scaling out too quickly in my mind as you can't see the array of triangles you are leaving behind. During my usage of the platform I have found some bugs or oddities and sent them feedback. They have been fairly responsive about addressing all the feedback I have sent them, and a number of things have been fixed thus far. A word to pricing and competition. I tried both NinjaTrader and ThinkorSwin in the beginning, both of which are free. Ninja trader didn't work at all, replay only seemed to work for futures and forex. ThinkorSwim is also free but requires an ameritrade TD account. Based on feedback I heard from others from the community that it was rather clunky and not really usable, I didn't bother trying it out. TradingSim is $300 a year, and they offer a 10 day trial. Compared to the cost of DAS I personally think this is totally reasonable, particularly for people with jobs, or in other time zones who need to practice out of market hours. To conclude I want to emphasize that whilst I am happy with using this software, it is clearly no replacement for the DAS trader simulator with real time data and participating in the chat. Personally, I find I take tradingsim less seriously than the DAS sim, something about the fact the things are not happening real time really takes the pressure off. Therefore it is essential to participate in the market daily to practice in realtime market conditions, and on the platform you will go live with. I'd be interested to here from other members using tradingsim and what they think. Anything to add or any questions?
-
1 pointHere is a tip that was shared by Andrew in the chat. I forgot who e-mailed it to him, but all credit goes to that person. DAS has a tendency to zoom out the Chart when you switch symbols in Market Viewer (watch list). Somebody posted a related question over on this post. To prevent this, do the following: Right click the chart area Click Configure In the Margins settings on the right hand side, uncheck Fixed Margin
-
1 pointThanks Mike..... This will be my new guide as this is the size of account I started CMEG with..... I do feel like if I can not make money with a 5K account then I can not do it with a larger account.... I was risking $50 with a $150 goal in SIM and it was going well, once I switched to Live and lowered my risk to $10 I was not treating it as serious as I was in the SIM account. I am not sure but I believe if I set my Kyles Hot Button for $17 with a promise to myself that if I can run a full week with my weekly goal hit I will increase slightly till I am at $50 risk then maybe this will force me to trade safely......
-
1 pointFriday 11/08/2019 I had a well-being score of 7.5/10 this morning. Due to my rule breaking day on Monday I am only trading SIM until my mind is back on track. I took lots of SIM trade this morning with BABA and DIS. I was stopped out on my first trade then I lost discipline immediately. Looks like I am not ready to go back live yet. My watchlist today was: AAPL, BABA, ROKU, MU, DIS and GPS. BABA gapped up but was weak going into the open. I had to wait 49 seconds before the volume came in. Volume was good and an 1min reversed hammer was created. Also, 4.5k was sold at the bid and I shorted when the price dropped below a PM level. My stop was the 188.07 level and my target was PDC. The price did fall about 20 cents, not enough to take a partial, then spiked back. I was able to stop out at the right spot for -1R. So this trade was OK. But I guess my discipline is still not back to normal because I immediately lost discipline and took 5 more undisciplined trades. Yes, there were some winners, but they were undisciplined. My discipline is better when I trade live, but after today I am not sure if I will be trading live on Monday. I still maybe in SIM. What I did good today: At least I started with an OK trade. What I am grateful from today? I am grateful for that I am still on SIM this week. What do I need to improve on: I need to get my mind straight and discipline back. Unsure how long it will take. Post Mortem. I decided not to edit my journal entry from this morning and instead I will add to it. After seeing my video of the trade and some reflection I realize this was not a very good trade. Since the trade was entered before 9:31am, I have a rule the stop needs to be 50% farther away than optimal or go half shares. The next stop was the high of PM, which was a 50 cent stop instead of the 35 cent stop (full shares) that I took. If I followed my rules I would not have been stopped out and the price did drop one dollar and thus I would have gotten my 2 to 1 reward/risk. I remember making the decision not to follow my rule. I thought its almost 1 minute from the open....
-
1 pointAIS 0800 with 5 hours.... feel OK ...... Normal Morning Routines... PAT: Share Size .... SIM vs Live Trades......... no Pre-5min Live...... No sub A setups Live......... Notes: This is the day that I either do this right or I go back strictly to SIM for a bit longer.......... Waking up late was no help yesterday as this seemed to just give me more FOMO........ I changed my Montage to SIM by default so that I have to manually switch it to Live...... Well I didn't do much today........ a SIM trade on accident that went my way on DIS........ once I realized I was in SIM I just got out and then the entry was gone,,,,, So be it..... Today was not a bad day so Ill head into the weekend with a good outlook for Monday..... After watching some charts after this last update I came across QCOM Reason2Trade Called out in chat, Qualcomm (QCOM) Q4 Earnings & Revenues Top, Buy Qualcomm Stock Because Analysts Say It’s a Winner for the 5G World The first quick in and out was when I realized I was in SIM so I got out and once I switched it over it was too late for the entry.... So I found another entry.... PB#3...... A setup (whew, thought I would never be able to like a trade again)..... Very Small size from this past week...... This was the only live trade I made today...... Trending the 9ema on the 2 and 5min charts, made a nice ABCD on the 2min, no MAs to run into, this 5min candle did not make a new low..... The Volume on this 5min candle was higher..... 2/1 where risk is at below the PHOD and target was HOD with room for a run....... I took my first partials too early out of fear of ending the week on a low note..... after that I partialed out at each R for 25% each (again this was a micro entry ) ..... and all out at the end of the day..... Where I took my first two partials I should have added to my position just below that when it broke through the 9ema with force on the 2min, the next two partials should not have been taken and the first partial should be where the fifth partial is.... +29.80 Cons: Back and forth to the computer with a lot of distractions today Pros: Didn't blow up anything..... Did come back to find QCOM (thank you Peter and Thor) Favorite Trade: QCOM Notes: I was all over the place today (not in the trading world but in the real world) and I believe this kept me from being able to find my place in the market..... QCOM turned out to be a good trade but could have been so much better without the fear from this past week..... P&L Goal $50: 29.80
-
1 pointI am testing this feature of DAS, trading from montage L2. If you right click in L2 > Config Level 2 the config window will open. In the column config, move ORDER to the right and it will show a buy button in every price level in the bid, and a sell button on every price level in the ask. You will be able to send limit orders typing # of shares and clicking the price level of your choice in the bid or the ask. This is particularly useful in SSR stocks, rising devils or just to take profits in a patient way in congested price levels. An as these will be limit orders, you will be adding liquidity.
-
1 pointI got in touch with DAS engineers and it turns out that it's not a bug (which I had also assumed it was), but actually a deliberate way to calculate VWAP in two different ways. On the montage, the VWAP is calculated by using every intraday price tick and weighting by volume; this is usually the textbook definition of VWAP and is what pro terminals like Bloomberg use. The graphs, on the other hand, weighting the volume during each candle against a price calculated using the (high+low+close)/3 of that candle. This is why for particularly volatile stocks, you'll see discrepancies across timeframes. If in doubt, use the montage's value.