|
|
Search
You searched for the word(s):
Showing page 1 of 22 (1,061 total posts)
< 1 second(s)
-
-
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 ...
-
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.  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 ...
-
...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
-
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 '-)
-
Excellent humor, Liadan! :-D
jose '-)
-
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 '-)
-
You can find the truest definition (by far) of the Darvas box and signals, together with MetaStock indicator code, within this documentation.
jose '-)
-
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 '-)
-
Try this code with simple Division by Zero error-traping:
-------------------------------------
range:=Max(H-L,.000001);net:= If(H=L, If(C>Ref(C,-1),1, If(C<Ref(C,-1),-1,0)),(C-O)/range);
Cum(net*V)
-------------------------------------
jose '-)
-
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 ...
-
Bill, take a look at this intraday pivots indicator, and adjust its { Day's start } section to signal weekly or monthly starts.
jose '-)
-
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 ...
-
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 ...
-
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 ...
-
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 ...
-
This handy Technical Analysis Library link recently posted at Traders' Consortium may be of some use here.
jose '-)
-
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 '-)
-
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 ...
-
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 ...
-
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 & 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 ...
-
Below is an excellent Darvas signals indicator found within the Divergence kit's documentation at http://www.metastocktools.com/MACDH/MACDH.pdf:
===============
Darvas Box - Buy & Sell
===============
---8<------------------------------------
{ Darvas Box - Buy & Sell v1.0
Copyright ยฉ 2006-2007 Jose ...
-
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,
-
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 ...
-
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 '-)
-
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 '-)
-
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 ...
-
|