Search

You searched for the word(s):
Showing page 1 of 22 (1,061 total posts) < 1 second(s)
  • Re: Darvas Box Automatically plotted

    wabbit:Your have still have failed to provide proof that your implementation is the ''truest definition'' of the Darvas method as requested. You can go on requesting all you like, but I'm not the least interested in spending scarce resources (time) to prove anything to someone who obviously does not understand neither trading nor the ...
    Posted to Product Wish List (Forum) by Jose on August 28, 2007
  • Re: Darvas Box Automatically plotted

    wabbit:A very brief search found three different implementations that all produce different results, from each other and from the code posted at the link above.&#160; The code at the links below all start plotting a new box high three bars after the new period high (including the high bar in the ...
    Posted to Product Wish List (Forum) by Jose on August 28, 2007
  • Re: Darvas Box Automatically plotted

    ...as when wrong-doers often use various obfuscation techniques to impede/thwart investigation.Noone has implied your code is confused or evasive...anything else is just another interpretation that changes the originalHmmm... some contradictions there. ... or edit your post because it is misleading.My post stands - at least until someone comes up
    Posted to Product Wish List (Forum) by Jose on August 28, 2007
  • Re: Darvas Box Automatically plotted

    wabbit:...the obfuscation of the recipe.Obfuscation or interpretation? Whilst it is exemplary to see you put your newly-found word into practice, perhaps you should research its meaning prior to any attempts at labeling any of my MetaStock code with it. j '-)
    Posted to Product Wish List (Forum) by Jose on August 28, 2007
  • Re: The Stock Market Explained

    Excellent humor, Liadan! :-D jose '-)
    Posted to General Chat (Forum) by Jose on August 27, 2007
  • Re: Darvas Box Automatically plotted

    wabbit:If this works, there should be a figure showing the Darvas Box by the code in the link you provided. Wabbit, if you need pictures to understand MetaStock code, perhaps you should then consider another hobby. j '-)
    Posted to Product Wish List (Forum) by Jose on August 27, 2007
  • Re: Darvas Box Automatically plotted

    You can find the truest definition (by far) of the Darvas box and signals, together with MetaStock indicator code, within this documentation. jose '-)
    Posted to Product Wish List (Forum) by Jose on August 26, 2007
  • Re: to construct one medium centered

    Just like the ZigZag, Centered Moving Averages (CMA) and Detrended Price Oscillators (DPO) have their use in past trends and pattern recognition. You can find MetaStock code for almost any CMA from the free formula section at MetaStockTools.com. jose '-)
    Posted to Formula Assistance (Forum) by Jose on August 25, 2007
  • Re: adapting indicators using C,H,L,O in our market

    Try this code with simple Division by Zero error-traping: ------------------------------------- range:=Max(H-L,.000001);net:=&nbsp;If(H=L,&nbsp;If(C&gt;Ref(C,-1),1,&nbsp;If(C&lt;Ref(C,-1),-1,0)),(C-O)/range); Cum(net*V) ------------------------------------- &nbsp; jose '-)
    Posted to Formula Assistance (Forum) by Jose on August 18, 2007
  • Re: Standard Deviations Lines on Detrend of Prices from Instantaneous Trend Line

    Derek, check out these indicators from MetaStockTools.com's formulae collection: 2-point plot - coding example of 2-point, x/y line plot - useful for creating automatic chart trendlines. TrendLine - adjustable automatic trendline. TrendLine-dates - date-adjustable chart trendline. Benchmark trendline - plots a performance benchmark trendline ...
    Posted to Formula Assistance (Forum) by Jose on August 17, 2007
  • Re: Working in Multiple Time Frames

    Bill, take a look at this intraday pivots indicator, and adjust its { Day's start } section to signal weekly or monthly starts. jose '-)
    Posted to MetaStock (Forum) by Jose on August 17, 2007
  • Re: MetaStock โ€œLOOPโ€ Formula

    Derek Worswick:pr:=(power(cosinepart,2))+(power(sinpart,2)); How do I then set up the value of dynamic variable โ€œprโ€ ========== Power - variable ========== ------------------------------------ { Power(DataArray,VariablePower) MS function. With thanks to MG Ferreira. http://www.metastocktools.com } { Data array } DataArray:=C; { Variable ...
    Posted to MetaStock (Forum) by Jose on July 25, 2007
  • Re: applying the KISS principle

    My KISS code plots exactly as ''your'' original, and I have no time nor desire to go through fixing your subsequent amateurish attempts at MetaStock programming. Give it up, Preston - you are well out of your depth here. You have absolutely no idea as to what you are doing, even though you continue to adapt my code and re-badge it as your ...
    Posted to Advanced Coding Techniques (Forum) by Jose on July 22, 2007
  • Re: applying the KISS principle

    pumrysh:Your code could have been simplified even further to just 2 lines of code.Heck, why not just make it one line of code then? { Plot restriction } restricted:=Ref(Ref(x,-backPds),backPds)*ValueWhen(1,Cum(1)=LastValue(Cum(1))-totPds-backPds,1); There is a reason why I've used 3 lines of code, and it involves helping MetaStock users ...
    Posted to Advanced Coding Techniques (Forum) by Jose on July 22, 2007
  • applying the KISS principle

    Whilst recently looking around for poorly written MetaStock code to use as an example for demonstrating the KISS principle (an acronym for ''Keep It Simple, Stupid''), I came across this gem: -------------------------------------------- {Restricted Display} {Written by Preston Umrysh} {Displays an indicator for a specified period of ...
    Posted to Advanced Coding Techniques (Forum) by Jose on July 19, 2007
  • Re: Open Source Libary

    This handy Technical Analysis Library link recently posted at Traders' Consortium may be of some use here. jose '-)
    Posted to MetaStock Developer's Kit (MDK) Assistance (Forum) by Jose on July 16, 2007
  • Re: Trader's Consortium

    That's correct, Hawk/Patibanda, email addresses must contain legal characters. i.e., use your real email address, and don't try name@domain.com as it has been taken already by Mr Name at Domain.com. ;) I look forward to your entertaining stories from your ''official tour to some Countries''. jose '-)
    Posted to General Chat (Forum) by Jose on July 8, 2007
  • Re: Trader's Consortium

    Hawk, if you are referring to Mr Patibanda S Chakravarthy, he deleted all his own posts both here and at TC's when no one seemed to appreciate them, and basically left. Curiously, Mr Patibanda hasn't been missed since, until your arrival on the scene today. ;) Hawk, I would be interested and amused to read more about your ''official tour to ...
    Posted to General Chat (Forum) by Jose on July 7, 2007
  • Re: Hull Moving Average...DLL or LastValue

    The LastValue()-based indicator code above produces hindsight-based dynamic outputs. i.e., past values change in retrospect as new data is loaded, giving the impression that the indicator produced some useful output in the past - when in fact, its actual plot value was very different at the time. It's common knowledge that one should take care ...
    Posted to Basic Coding Techniques (Forum) by Jose on July 5, 2007
  • Re: Howard's average

    wabbit:Formula I invented is not public because I do not want competing products to copy my creativity. That is the main reason why we have copyright laws - to protect the author's time &amp; effort invested into the creation of his/her unique work, and thus encourage an atmosphere where ideas may be shared openly for the overall benefit of the ...
    Posted to Formula Assistance (Forum) by Jose on July 4, 2007
  • Re: Darvas exploration [RESOLVED]

    Below&nbsp;is an excellent Darvas signals indicator found within the Divergence kit's&nbsp; documentation at http://www.metastocktools.com/MACDH/MACDH.pdf: &nbsp; =============== Darvas Box - Buy &amp; Sell =============== ---8&lt;------------------------------------ { Darvas Box - Buy &amp; Sell v1.0 &nbsp;Copyright ยฉ 2006-2007 Jose ...
    Posted to Formula Assistance (Forum) by Jose on July 2, 2007
  • Re: VPCI code July 2007 TASC magazine

    Privilege? Pfff... Pal, were you to be so fortunate as to have a true professional post in your private mailing list, the privilege would be all yours indeed. In any case, since my busy custom MetaStock workload does not leave me with any time to waste on a self-delusional's shrinking mailing list, I guess you can only dream of the group's heyday,
    Posted to Basic Coding Techniques (Forum) by Jose on June 29, 2007
  • Re: VPCI code July 2007 TASC magazine

    pumrysh:In 2005 I posted the original code from Trader's Mag Plotting MetaStock's Volume-adjusted MA on a price chart with some decent volume shows how the moving average reacts unnaturally to price movements - the concept behind it is clearly flawed. The VPCI as it stands now with a flawed (and obviously untested) major component is a perfect ...
    Posted to Basic Coding Techniques (Forum) by Jose on June 29, 2007
  • Re: Need to understand the definition of 'continuous' contracts

    As an application example of the difference between actual contracts and continuous data, I use PremiumData's excellent continuous contract data to generate trade signals, and the currently most liquid contract's data for the actual trade. jose '-)
    Posted to MetaStock (Forum) by Jose on June 27, 2007
  • Re: VPCI code July 2007 TASC magazine

    As mentioned in this Traders' Consortium post on the VPCI, one should take a closer look at MetaStock's Volume-adjust MA, as it definitely doesn't look or feel ''right''. Also take a look at the EMA-volume indicator from MetaStockTools.com - ''improved volume-adjusted, dynamic-period EMA with multiple output choices.'' jose '-)
    Posted to Basic Coding Techniques (Forum) by Jose on June 27, 2007
  • Major market trend developing - watch this one

    I'd like to point forum members to an excellent article by Tony M, one of our resident experts at Traders' Consortium. Tony writes about the coming major market changes - the influence of the Dubai-based financial region on the Western financial markets. Be part of the leading edge - avoid being swamped by the aftermath of a rapidly changing ...
    Posted to Advanced Coding Techniques (Forum) by Jose on June 24, 2007