Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 08/27/2019 in all areas

  1. 2 points
  2. 2 points
    @Greg D , @Rob C @Glenn BuddeThank you guys for the feedback. Appreciate it. I am doing fine, it wasn't such a bad day, I overtraded and got really mad at myself. Thanks for reminding me that it is still part of the experience. I always believed that for someone to be consistent in trading, it takes time and experience, which was exactly why I kept my risk very small while starting up. So I am paying less to gain more experience and make any corrections without blowing up my account. @NinjaTrader I was actually more confident about my plan after Marek confirmed soon after I created it.
  3. 1 point
    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. 1 point
    If you are a Monthly or Lifetime Member and need to extend your simulator time with BBT, you can get 3-months of DAS simulator time for $100 per month ($150 per month Regular Price by DAS Inc). Please go to this page to purchase your subscription. After your purchase completes, you will receive an email from Andrew asking you when do you want to start your sim time. After you respond, within 24-48 hours, you will get another email with your username and password (you will get a new login). PLEASE NOTE: DAS Trader Pro is designed for Windows OS. Mac iOS or other operating systems users should use interfaces for running DAS on their machines. For more information please read this forum post. The DAS Simulator is non-refundable after you activate your simulator time. If you decide you no longer wish to use the simulator after activating it and you have time left, we will not refund you. The BBT DAS Simulator CAN NOT be linked to any broker; it’s a standalone platform that cannot be linked to a broker or converted to a live account. If you have any questions please reply to this post -Abiel
  5. 1 point
    I figured that was the case, but I wanted to be sure...thanks!
  6. 1 point
    @Steph @JD @Thor @Glenn Budde @Atom Sorry if I missed anyone in the tags. But we have official word from @Andrew Aziz He can most likely make the Florida meetup on the proposed date of Saturday October 26th. Lets get the offical new post started and move everyone over there. @JD Can you still create and lead the new forum thread? If you are open to it great, if not for any reason please let me know. We do not have to pick an EXACT location as of yet being 2 months out, but if you an note the general area, date, time and all that jazz. Would be amazing to get it on the forum this week. Remember to highlight (not in this exact wording) 1. This is a BearBullTraders Sponsored event 2. EVERYONE is welcome, not just BBT members 3. We buy drinks FOR ALL! 4. Fun night of talking trading And @JD and whoever else might be looking at official spots for the meetup. We want to make these fun, but also turn them into an event at a location where we are in somewhat of a semi private/private spot so we can have group discussions instead of only 1 on 1 or talking to the people immediately surrounding us. All that make sense?
  7. 1 point
    August 27, 2019 - Had the opportunity to trade today that I was not expecting. I decided after being away for about a week, that I would trade Sim today and prepare for tomorrow. All I did today was work on my entry criteria for my moving average cross-overs and my routine for the afternoon. I was watching $MOMO and $AMD at the open but I did not see any opportunities that I liked to entered. Overall a good day to get back into my routine. Live trading tomorrow to finish out the month.
  8. 1 point
    27/8/19 been away for a while at a family event but back and still keen to carry on where i left off. had a pretty bad day, not feeling great tbh think i need a good nights sleep still. Trade 1: 5 min ORB looked really strong at the open but bounced off some resistance and couldnt make another move up, almost got back in but stopped myself which is something. Trade 2: after a strong open JNJ was consolidating and felt it was gonna pop up again and it did so got a nice trade and out when it looked weak. Trade 3: looked like the start of a trend trade but was just a fakeout, shouldve waited for confirmation. Trade 4: the first part was kinda a wedge/pendant so got in on the breakup and got 2 good partials then tried to get out at b/e but missed my hotkey and gave a lot back.. trade 5: after it bounce off VWAP i went long and then stupidly added straight away which brought my stop higher so i got stopped out when if i didnt add i wouldve survived the pullback. Trade 6: got in again shouldve just left it by this point, overtrading. Trade 7: Teva was a descending triangle but not very steep. i went short at the breakout but it didnt break so i flipped my position, then it bounced of the wedge i drew so stopped out, then it went back up, broke my wedge and i got in again for a good trade but set a stop and walked away and came back and it was done.
  9. 1 point
    Tuesday 8/27/2019 I had a well-being score of 8/10 this morning. Had some big emotional swings this session. I took 2 live trades with AAPL and 3 SIM trades. So AAPL and ROKU were on my market open watchlist with MU, AMD and PLAN on my 5min ORB watchlist. I had no bias on AAPL today but it was trading in a position at the open where there were levels 60c above and below it. Above the resistant level there was nothing but white space on the chart. Ten seconds after the open the priced popped on large volume and broke the 208.43 level. Then it hung around that level for 10 seconds so I took it long. There was no target in sight so I chose the 210 level with my stop the 207.95 PM level. The instant I entered the trade it reversed and did not look back and I quickly got stopped out. Everytime the a trade like this happens it creates an emotional hit. I hate when they instantly go against you. You feel if you waited just one second more I would have not gotten into this trade. As it dropped I could see that this would be a nice short with a shooting star forming and flipped my position when it broke the 207.95 level. There was a bit of a slide. My target was the 207.18 level with my stop at 208. A minute later I did get a small partial. Then I waited and noticed the 20MA-1min was being respected which is unusual so soon after the open. Three minutes later there was a white candle that respected the VWAP-1min so I pulled my stop to VWAP. The next candle broke VWAP and I stopped out. Again more emotional hits as the instint I stopped out the price reversed and never looked back and became a really good short. If I gave it 1c more…. I had to step away from screen for a few minutes actually. I did come back and made three SIM trades (1 for 3). Then I left the screen again and didn’t want to journal for awhile. I was pretty salty this morning as I went through my morning. Then I came back to the screen to write my journal entry and saw it wasn’t that bad. There were solid score cards and lots of learning. Even my SIM trades were fine. All I remember is I took 3 trades and stopped out on 2 of them. When I came back and looked and sure I was 33% win rate on my SIM trades but then I noticed I was quite profitable on my SIM trades today. And my S/Os were well managed. So actually I traded well. A few big learnings. I have been burned a few times recently about trading the open when the R/R is too big. It seems when you are close to the open you need a strong level close to your entry to pull the price to it. I will no longer take a trade without a level within 1R trading off a column candle. A hammer/shooting star may still be reasonable to take the trade. But these solid candle trades into the leveless open space don’t work near the open. The second learning is it is time to loosen up on the stop outs. Stopping out is still very hard for me. To adapt I become very robotic at the time of stop out. I focus on the point of the stop out and I trigger the exit when it is reached. I turn off my intellect. I am so worried about not having the strength to stop out that I have been stopping out too early. Today was a good example. There was VWAP, a PM level and the 208 level within pennies of each other. So why choose VWAP, the first level the price will reach, to stop out? These three levels make a fuzzy band level. Choosing the first one is not wise at all. I will work to change that from now on. I have been proud of myself that I don’t look at my P/L until the trading session is over. It was a difficult thing to accomplish. I have done that for months now. But I still focus on the P/L daily and is a concern all month. But my focus should be my score card. So starting tomorrow, the P/L window will be closed. I will only look at it at the end of each month. Score Card (live trades) AAPL FL 88% 91% What I did good today: I like my score card today. What I am grateful from today? Lots of learning today. What do I need to improve on: Focus on the score card. P/L window will be closed until the end of each month.
  10. 1 point
    nice! This was a great interview. Hope this works well for you as well!
  11. 1 point
    8-27-19 4 1/2 hours sleep.... feel pretty well rested... SSS and a coffee..... After watching the interview by William with Joe (Average Joe) yesterday I added Hot Buttons in Montage and took off my view of my position from my main trading screen..... PAT: Get back to the basics.... ORB and ABCD early and ABCD, VWAP, Trend in late morn. afternoon..... STICKY NOTES..... If I do something stupid or take a bad trade after brief review take a break to Journal.... +AMD ORB two trades both got stopped out for 1R each.... I did use the 1 and 2 for an ABCD also... Just didnt work out... What I did wrong is I went in with full share sizes so my stops were a full R..... Will start using smaller size and scaling in instead.. (105.00) +JNJ ABCD.... Went in with small share size and added upon confirm..... First partial for 25% and the others at 10%... I added when it pulled back to the 9, took 50% off with price action change and then all out for a little over 2.5R I am feeling much better with small share sizes and adding in and waiting long enough to to start partialing and using smaller partials after the first.... +130.40 I plan on coming back after lunch if I can find a setup.... I did not find any clear patterns so as I tuned into PLAN I found a big breakup and as Peter was announcing it I was getting in.... went in for small share size and added and partialed all the way through..... I added when my T&S was running green and partialed when Red scaling all the way... I was also watching the LVL2 when I entered and it also had a bunch of decent orders on the Ask...... 58.38 was a daily level I had marked (learning from Carlos in the morning) and right about there it was rejected... +81.90 Cons: I went in with full share sizes for 5min ORB when I should have managed better and taken smaller size. Pros: I felt good with a playbook and was able to stay more focused.... I also feel like I learned from "Average Joe" with hiding the P&L (which I know this room talks about all the time also) and making hot buttons on my montage (as of now I did not make any mistakes) R=50.00: +2R +107.30
  12. 1 point
    Tuesday August 27th, 2019 Sleep: 8 hours. Mood: good ready to trade. Bad trading for me today. saw $ROKU breaking all time high and i jumped in half size then got in the rest on break of the day high. traded this as an 5min ORBU giving it space and wanted to add to my position when it went in my favor. once i got in the other half, i moved my stop loss to a new 5 min low and got stopped out. this trade wasn't terrible, i realized that i was FOMO'ing but i got in anyway and didn't wait for a pullback is why i'm unhappy with the trade. otherwise, it was a 5min ORBU and i added when it went my direction so all in all not a terrible trade i just let my emotions get the better of me sometimes and i'm not happy about that. GOOD: changed stop, added more on HOTD break RFI: FOMO and i knew it and i traded anyway MOOD: excited, angry with the stop out CONSISTENT: yes, i respected my range stop I'm guilty of trying the same trade again if i feel like i just barely got stopped out. and what happens most the time is i get stopped out again because i'm trying to force my position when the market is clearly saying this isn't the right move. i choose to ignore that the 2min "pullback" was probably a reversal sign and got back in on the long side. my reasoning at the time was i saw three huge buy orders on the time and sales. This trade is why i said it was a bad trading day. The reasons are it's not a setup that i trade, and having big buy orders without a setup is not a reason i get in to a trade. i was just looking for any reason to get back in long to make back my loss then ignored the new 2min then 5min lows hoping it wouldn't hit my stop. GOOD: got out of the trade RFI: no setup, no stop level that was resistance. engulfed and broke VWAP and i still held, could have limited my losses. MOOD: not pleased with myself right now CONSISTENT: yes, got out on range order, lost a little on slippage. What i did good today: stopped trading. a small consolation is knowing that i'm not being objective right now so the best thing to do is take the L for the day and come back fresh tomorrow What i did bad today: took a trade without a setup. haven't made that mistake in two or three weeks What can i do better tomorrow: trade setups, if you notice FOMO it's better to relax and wait for the feeling to pass than to act on it and ingrain bad trading patterns.
  13. 1 point
    Excellent. hope all the Florida Traders can make it.
×
×
  • 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.