Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.
-
Content Count
4075 -
Joined
-
Last visited
-
Days Won
1
Everything posted by Tams
-
try one SD on the other side of a 20MA.
-
When I first got my 24", I thought they were sooo big, they were "in my face". now I think I can use an IMAX.
- 16 replies
-
Click on the Release button. It is located in the right column. The file is in text format. you will need to import it into your MultiCharts/TradeStation/OEC/TraderStudio, etc. For instruction on import, please refer to your user's guide.
- 3 replies
-
- bollinger bands
- channel
-
(and 3 more)
Tagged with:
-
Bottomline This indicator prints the pertinent information on the bottom of the screen. You can easily modify this indicator with information of your choice MultiChart version can adjust the text size. see also the complementary Masthead: http://www.traderslaboratory.com/forums/f46/masthead-5768.html#post62946 Bottomline_(TS).txt Bottomline_(MC).txt
- 10 replies
-
- atr
- easylanguage
-
(and 2 more)
Tagged with:
-
Masthead This indicator prints the pertinent information on the top of the screen. You can easily modify this indicator with information of your choice MultiChart version can adjust the text size. see also the complementary Bottomline: http://www.traderslaboratory.com/forums/f46/bottomline-5769.html Masthead_(TS).txt Masthead_(MC).txt
-
- atr
- easylanguage
-
(and 2 more)
Tagged with:
-
MultiCharts going GOLD soon ! http://www.tssupport.com/forum/viewtopic.php?t=6257 This is EasyLanguage on steroid !
-
The Awesome Indicator can be applied to charts of any format. I do not remember the exact chart I used in that illustration. The key thing in using this indicator is to... 1. look for AO divergence 2. then watch out for price break out in the reversal 3. The movement is confirmed by the AC enjoy!
-
you coding expertise (or lack of it) dictates the direction you can take.
-
I agree... some people would post a link and expect others to look for "it". as a practice, I skip over the lazy requests. ;-)
-
Please contact Trade Navigator, they already have the Ergodic indicator coded.
- 132 replies
-
- constant volume bar chart
- cvb
-
(and 2 more)
Tagged with:
-
It is free (satisfied one of your requirements), but I don't know if it can be connected to Excel. I have not tried it and do not know its quality. http://www.bestfreecharts.com/
-
Thanks James. Best Regards :-)
-
Platform name not shown in the Indicator threads. pls see attached.
-
I don't think John Elhers' Center of Gravity Oscillator is related to your Center of Gravity Bands.
-
If you are into high definition charting... i.e. charts with lots of indicators, trendlines, arrows, stars, circles, text reminders, etc., then a higher resolution monitor helps. Otherwise any monitor would do.
- 16 replies
-
you can add gradient to volume weighed color bars ! http://www.traderslaboratory.com/forums/f46/volume-weighed-color-bars-5709.html
-
Volume DayAverage (this indicator uses extended EasyLanguage, it is only applicable in MultiCharts) This is a volume indicator with a twist -- in its average. Instead of a traditional moving average, this indicator calculates the average from the beginning of the day... and draws a horizontal bar across its entire day. i.e. the 2nd bar has a 2 bar average, the 3rd bar has a 3 bar average... the 10th bar has a 10 bar average, and so on. You can easily see the average volume per bar since the beginning of the day, and set your anticipation for the current bar's direction accordingly. You can also compare today's average volume with previous day's average volume. The average color will change when the bar's volume exceeds the average. note: you should set the plot "DayAvg" to invisible. Volume_DayAverage.txt
-
Not everybody can show you their trades (or PnL). -- a registered person is bound by laws and regulations -- a person with a firm is bound by his employment -- a professional who is trading OPM If you can't tell a good thing when you see one, move on. It is probably not good for you.
-
I doubt the problem is with MC, MC would not selectively have problem with "Gauss", but not other studies. just to be sure we are on the same page, this is the code of the "Gauss" function. pls check to see if yours is the same. {Gaussian Filter} Inputs: Price(NumericSeries), iptPeriod(NumericSimple), iptPoles(NumericSimple); variables: aa(0), b(0), w(0), x(0), y(0), y1(0), y2(0), y3(0), y4(0), a_1(0), a_12(0), a_13(0), a_14(0), a2(0), a3(0), a4(0), Pi(3.141592654), sqrtOf2(1.414213562), Period(2), poles(0); if (iptPeriod < 2) then Period = 2 else Period = iptPeriod; // Number of filter poles must be between 1 and 4, inclusive if iptPoles < 1 then poles = 1 else if iptPoles > 4 then poles = 4 else poles = iptPoles; // initialization - performed only for first bar if CurrentBar = 1 then begin w = 2 * Pi / Period; // omega w = 180 * w / Pi; // in degrees b = (1 - cosine(w)) / (power(sqrtOf2, 2.0/poles) - 1.0); aa = -b + squareroot(b*b + 2*b); a_1 = 1.0 - aa; a_12 = a_1 * a_1; a_13 = a_1 * a_1 * a_1; a_14 = a_12 * a_12; a2 = aa * aa; a3 = aa * aa * aa; a4 = a2 * a2; y1 = Price; y2 = y1; y3 = y2; y4 = y3; end; { Calculate your indicator value here } x = Price; if (poles = 1) then y = aa * x + a_1 * y1 else if (poles = 2) then y = a2 * x + 2 * a_1 * y1 - a_12 * y2 else if (poles = 3) then y = a3 * x + 3 * a_1 * y1 - 3 * a_12 * y2 + a_13 * y3 else if (poles = 4) then y = a4 * x + 4 * a_1 * y1 - 6 * a_12 * y2 + 4 * a_13 * y3 - a_14 * y4; y4 = y3; // delayed by four bars y3 = y2; // delayed by three bars y2 = y1; // delayed by two bars y1 = y; // delayed by one bar Gauss = y;
-
Anyone using 30" monitors? I am using 24" and thinking of upgrading. Do you find them too large? or, the bigger the better?
- 16 replies
-
List of Articles on Volatility Trading Concepts
Tams replied to Northern boy's topic in Market News & Analysis
here's a volatility trading system http://www.breakoutfutures.com/Newsletters/Newsletter1102.htm p.s. I haven't tested it yet. -
Yes, MultiCharts understands EasyLanguage.
-
if you have a testing plan... you can download MultiCharts trial. it is the full version, the real McCoy, that you can use for 30 days, FREE ! MultiCharts utilizes multi-core for backtesting. If you have a quadcore machine, you can save ~ 50+% of the testing time. here's one of the test I did a while back. .
-
The candle name logic was designed by an unknown author. I have reviewed various codes floating around the internet, I think some of this code can be attributed to Surinote. My contribution is limited to making the candle names visible on the chart. I believe the multi-label is due to a candle having multiple attributes. As in any indicator, one really need to understand the context to make it meaningful.
- 9 replies
-
- candle
- easylanguage
-
(and 3 more)
Tagged with:
-
P.S. the CG logic is simple enough, and MT4 is not that difficult, if you read through the MT4 manual, I am sure you can get the indicator coded. .