Jump to content
Medved Trader Forums

vectormix

Members
  • Posts

    20
  • Joined

  • Last visited

Everything posted by vectormix

  1. Could earnings be plotted as indicator with a rolling sum (such as the aggregate of the last 4 reported EPS quarters), please? Could the P/E ratio also be a plotted indicator?
  2. For scanner: Pocket Pivot Volume Signature: "The volume should be higher (or lower) than the largest down volume of the last 10 (or X # of) trading days (or bars)."
  3. Thank you Jerry! Your promptness and efficiency to the community are outstanding! That example will help navigate the Advanced Paintbar Manager better, too. Other scanner requests: Pocket Pivot Volume Signature: "The volume should be higher than the largest down volume of the last 10 trading days." Pocket Pivot Origination: http://www.virtueofselfishinvesting.com/pocket-pivot GUI Implementation example: http://www.chartmill.com/documentation.php?a=408&title=Pocket Pivots Intraday Volume Scanner: Calculates on a real-time basis how active a stock is trading vs. its average intraday volume over or under a certain threshold. A separate calculation for average daily dollar volume is also included that could be used as a separate and similar scanner. Example: Symbol Avg Volume Chg Current Px Curr Volume Time Intraday Avg Vol Pct Diff Avg $ Volume Current $ Volume Current Avg $ Volume BIDU 13,353,000 -0.700 $74.670 8,050,370 1147 10,303,733 -21.87% $997,068,510.00 -$5,635,259.00 -$7,212,612.99 CRM 2,617,000 -1.090 $93.920 2,100,522 1147 2,019,387 4.02% $245,788,640.00 -$2,289,568.98 -$2,201,131.36 Excel spreadsheet code: Columns: A B C D... Rows 1 2 3 Symbol Avg Volume Chg Current Px Curr Volume Time Intraday Avg Vol Pct Diff Avg $ Volume Current $ Volume Current Avg $ Volume BIDU 13353000 =winros|Change!bidu =WINROS|Last!bidu =winros|totalvol!bidu 1147 =(F2-630)/(1300-630)*B2 =E2/G2-1 =B2*D2 =E2*C2 =C2*G2 CRM 2617000 =winros|Change!crm =WINROS|Last!crm =winros|totalvol!crm =F2 =(F3-630)/(1300-630)*B3 =E3/G3-1 =B3*D3 =E3*C3 =C3*G3 To help Croesus' request along, some references for tackling: Cup and handle: http://www.haikulabs.com/mh.htm Flat-Base: http://www.thedigeratilife.com/blog/flat-base-chart-pattern-stock-trades/ Double-Bottom (Bulkowski defines different "Double-Bottoms" in sub-categories that may help the pattern fit dependent on several situations the shape-pattern can take): http://thepatternsite.com/dbsetup.html
  4. Hi Jerry, the "ANTS" signal scan please: What would the MT Advanced Paintbar or Scanner code look like to implement the situation when 12 or more Close bars, out of the prior 15 Close bars, are all up? Basically, if one encounters a daily chart where price is up 12 out of the past 15 days it is exhibiting unusual strength. ---------------------------------------------------------------------------------------------------------------------- http://cedric.froment92400.free.fr/index.php/papiers/interview-gil-mores/ Q: I have heard of a buy signal being given if a stock is up in 12 of the past 15 days. Where would the actual entry point be? A: I look for 11 out of 13 or 12 out of 15 days up in a row after a breakout. Once the stock does this, I’ll wait for it to move sideways or perhaps pull back for anywhere from 3-10 days, and once it moves back out through the top of this little formation I will come into the stock heavily as I add to my original position, or even sometimes just enter the stock for the first time. /**************************************************************************************************** This is a modified eSignal script to make the color of the price bars be relative to prior closes and ANTS signal. Blue bars are drawn when the current price is greater than the close of the previous bar close. Red bars are drawn if the current price is below the previous bar's closing price. This script also counts the number of blue bars over 15 consecutive periods. When there are 12 or more blue bars in that period a triangle is drawn above the last bar where that condition is met. This Script was created by Mike Scott. 2017 sourced at: https://gilmoreport.com/education/gilmo-toolbox/ *****************************************************************************************************/ function preMain() { setPriceStudy(true); setStudyTitle("O'Neil 12 of 15"); setColorPriceBars(true); setDefaultPriceBarColor(Color.blue); var fp1 = new FunctionParameter("nBars", FunctionParameter.NUMBER); fp1.setName("Number of Bars"); fp1.setLowerLimit(1); fp1.setDefault(15); //used for 12 of 15 up bar calculation } function main(nBars) { // This part colors up and down bars based on close-to-close prices// var vC = close(); var vPC = close(-1); if(vC == null || vPC == null) return; if(vC > vPC) { setPriceBarColor(Color.blue); } else if(vC < vPC) { setPriceBarColor(Color.red); } /* * This part flags with a triangle when there are 12 or more bars out of 15 (nBars) higher closes */ var i = 0; var nStateTotal = 0; //set bar counter to zero if(close(-nBars+1) == null) return; for(i = 0; i < nBars; i++) { if(close(-i) > close(-i-1)) { nStateTotal = nStateTotal + 1; } } if(nStateTotal == 0) { return ; } else if(nStateTotal >= 12) { drawShape(Shape.UPTRIANGLE,AboveBar1) } return; }
  5. Hello, is there a straightforward selection to toggle the volume totals from arithmetic to logarithmic scale?
  6. Is it possible to create custom calculations and include results of those calculations in hover over boxes for a historical chart tick? For example display: Price % change of Close[0] vs. Close [1] ? The last trade price % relative to the entire range of Low to High Prices for a singe bar taken as 100%. (e.g. High 41.71, Low 41.20, Last, 41.55... the closing range would be 69% above the lowest daily level to the high)
  7. Hello, from QuoteTracker, there was an option from paintbar results to "Show on Candle/Bar Background." Does that selection exist in Medved Trader, and if so, how does one select? For example, looking to simply shade a small rectangular background box immediately behind a bar/candle from whatever paintbar results apply to that bar. Thanks!
  8. Hello, Maybe this is obvious somewhere else, but how does one base an OHLC color from previous day close like we have for the volume indicator's handy ;Parameters for Volume: "Color Using: Prev. Close" drop-down? For example, if the Close[0] is above the Open[0], but Close[0] is still below Close[1] the OHLC bar is colored default negative down. I set-up a paintbar to re-paint bars on Close[0] vs. Close[1] perspectives that seems to work. Would like to know if that is the elegant solution for now? However the neutral days where Open[0] = Close[0] are not changing at all from paintbar formulas even if Close[0] is above or below Close[1] when Open = Close for same day ???
  9. Is this feature now possible with earnings data? Such as plotting a 4 rolling quarters' EPS sum over-layed with a monthly OHLC chart? Thanks!
  10. One needs to write a paintbar indicator for the volatility of reversals in smileys in this thread.
  11. Hello, Could Donchian Channels (default is last 20 ticks, but customizable for any length would be great) please be considered as an upper chart indicator? Is there another existing indicator in Medved Trader where this Channel could be applied already? Thanks! http://www.traderplanet.com/tutorials/view/162844-trend-indicator-donchian-channel/
  12. Hello, Could we please see Demark setup (9s) and countdowns (13s) implemented as an indicator where each bar is numbered? Reference: http://practicaltechnicalanalysis.blogspot.com/2013/01/tom-demark-sequential.html http://boards.quotetracker.com/qt-board/ubbthreads.php?ubb=showflat&Number=46269&page=0&fpart=2
  13. I think the “Darvas Box” is essentially the “Flat Base” or “rectangle tops/bottoms.” A general flat base definition is found here: http://www.breakoutwatch.com/flatBase/flatBaseHelp.html A popular suggested range of the dimensions can be found here: http://bit.ly/sYsw0k If possible, I suggest allowing the user to define this indicator with a few key parameters held as input values--as this indicator is subjective to different user definitions. So four key parameters for the user to set: the upward/downward trend %, the base depth %, the tolerance %, and the base length of so many bars. To really make this cool, the upper or bottom depth lines could be linked with an automated email alert if price in real-time crosses one. Thus, a simple first attempt at Darvas/flat bases I think would look like these charts: http://www.amateur-investor.net/FlatBaseChartPattern.htm Another thought which could this make this very powerful. A shorter duration of a “Darvas Box” is a “3 or 4+ Weeks Tight (3WT)” formation. They usually occur after a “Darvas Box” traditional price breakout. Again, if the user could define the major variables in the Darvas-like algorithm just like the above, a 3WT could be easily set as just another additional “Darvas Box” or whatever indicator the amazing Medveds decide to call this pattern indicator in the nifty tool. Notional Darvas Box Indicator Setting: >=20% uptrend, 15% base depth, 5% tolerance, base length between 25 to unlimited bars (days). Notional Darvas Box Indicator Setting (for a 3WT): 10% uptrend, 1% base depth, 0% tolerance, base length between 10 to 20 bars (days). 3WT Definition: http://investdaily.custhelp.com/app/answers/detail/a_id/1026 http://www.vincedowd.com/3-weeks-tight-pattern/
  14. Really would like ability to plot Earnings on historical charts. An upper indicator, overlay, or lower indicator that could plot EPS as a basic line plot would be useful. Perhaps put the scale for EPS on the left vertical Y axis of a historical chart if overlayed on the price chart? Thanks.
  15. Hello, Just wanted to report that I tried installing on a Windows XP on a PC that was fully updated with Microsoft Updates, but using Service Pack 2. Windows Service Pack 3 is required for Medved Trader to be installed on Windows XP. Thanks.
  16. Thanks Mike. Also, the "price and %" does not seem to save on the layout or template. If, "price and %" is selected, and saved (I assume template is correct), when the particular historical chart is closed then re-opened the new chart just shows %--not price.
  17. Hello, When compare scale is right clicked on the chart for a chart with compare symbol indicator, the volume % difference is also shown if price and % are selected. For a symbol being compare to, for example, the SPY the volume % change is enormous. Any way to have only the % compare visible on price and not (or only on chosen) lower indicators? Thanks.
  18. Hi, Two questions on market indice availability. Is there a feature currently or plan to have major market indices on a top ribbon like in QT? In Indicators (Compare Symbol), the toggle button for Market "Index" when selected still has an empty pull-down? Should there be a list visible there? Not sure if it is a bug, future list, or I do not have the setting right. Thanks!
  19. Hi, Noticed that EMA is set as hard default toggle for the volume lower indicator. Is there a reason why EMA and not an option for SMA or other indicator is available for the volume data? Thanks.
×
×
  • Create New...