MULTICHARTS THREAD (INDICATORS + STRATEGIES + OTHER STUFF)

If you don't know where to start, start here! Don't be afraid to ask questions.

Moderator: moderators

raven4ns
rank: <50 posts
rank: <50 posts
Posts: 23
Joined: Thu Mar 20, 2008 9:07 pm
Reputation: 0
Gender: Male

Postby raven4ns » Mon Mar 31, 2008 6:50 pm

Hi Tresor,
I have a message into TS support to show me how to import files like yours. Once I get their response I will try your file. Thank you for your kindness.

Tim
Tim

"The measure of a man is not how many times he gets knocked down, but how many times he gets back up." Anonymous
"A man has to believe in something, I believe I will go fishing" Henry David Thoreau

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.

hrsvala
rank: <50 posts
rank: <50 posts
Posts: 1
Joined: Mon Mar 31, 2008 2:24 pm
Reputation: 0
Gender: Male

TRO - rules and explanation

Postby hrsvala » Sun Apr 06, 2008 6:26 am

Khalid;
thank you for Multichart colm. I am new and see so many different TRO . I can not find rules or explanation for TRO. can u show thread where rules r given

Tresor
rank: 50+ posts
rank: 50+ posts
Posts: 93
Joined: Sat Mar 15, 2008 2:30 pm
Reputation: 0
Location: Davy Jones' Locker
Gender: Male

Volume * Price Momentum Indicator

Postby Tresor » Mon Apr 07, 2008 2:58 pm

Hello Guys,

I came accross an indicator that shows momentum on both volume and price action. Do you use it or perhaps someone can code it for MC?

http://www.positiveterritory.com/do/tw/vpmo11.htm

Regards

stevenvdv2
rank: <50 posts
rank: <50 posts
Posts: 6
Joined: Mon Apr 14, 2008 5:49 pm
Reputation: 0
Location: Antwerp
Gender: Male

Grateful MC user!

Postby stevenvdv2 » Fri Apr 18, 2008 9:30 pm

Hi Khalid,

Thank you very much for your work on adapting TRO's great indicators for Multicharts.
I have been struggling greatly to try to get some of them to work as I am not that good at EasyLanguage.
I am very happy I found this thread!

Thanks again and best regards,

Steven

khalid
rank: 50+ posts
rank: 50+ posts
Posts: 110
Joined: Wed Mar 14, 2007 2:15 pm
Reputation: 0
Location: Lahore
Gender: Male

Postby khalid » Wed Apr 30, 2008 3:34 am

Steven,

Of course you have been here!

I was away for a month and did not realise this.

All BuyZone versions posted here will work with MultiCharts, not just the B version.

In case you are facing difficulty with any, please let me know.

Khalid

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.

Tresor
rank: 50+ posts
rank: 50+ posts
Posts: 93
Joined: Sat Mar 15, 2008 2:30 pm
Reputation: 0
Location: Davy Jones' Locker
Gender: Male

Thermostat trading system for MultiCharts

Postby Tresor » Tue May 06, 2008 7:45 am

Hello all,

I enclose a trading system called Thermostat. More on this system (construction + performance on different markets) can be found in book ''Building winning trading systems with Tradestation''. If you google the title of the book or the system name you will find out more. The file already includes ChoppyMarketIndex.

Regards
Attachments
Thermostat.zip
(2.84 KiB) Downloaded 300 times

Tresor
rank: 50+ posts
rank: 50+ posts
Posts: 93
Joined: Sat Mar 15, 2008 2:30 pm
Reputation: 0
Location: Davy Jones' Locker
Gender: Male

Postby Tresor » Fri May 30, 2008 1:52 pm

Hello,

Does anyone by any chance have VWAP indicator for MultiCharts?

Regards

raven4ns
rank: <50 posts
rank: <50 posts
Posts: 23
Joined: Thu Mar 20, 2008 9:07 pm
Reputation: 0
Gender: Male

kHALID

Postby raven4ns » Fri May 30, 2008 9:27 pm

Hi Khalid,
Flyingdutchman kindly provided me with the candle pattern code but it is written in something called Equila. Would you please look at it and see if it could be converted to MultiCharts Easylanguage? Here is the coding:

Meta:
Synopsis( "Detects and highlights the presence of a specific candlestick
pattern which can be selected in the indicator's properties." ),
ShortCode( "CANPAT" ),
Subchart( False );

Inputs:
Pattern( Hammer, HangingMan, BullishEngulfing, BearishEngulfing, DarkCloudCover, PiercingLine, MorningStar, EveningStar, InvertedHammer, ShootingStar, BullishHarami, BearishHarami, Doji, HaramiCrossBearish, HaramiCrossBullish, DragonflyDoji, GravestoneDoji, TweezerTops, TweezerBottoms, BullishPitFall, BearishPitFall, BullishSunrise, BearishSunset, BullishCounterattack, BearishCounterattack, RisingWindow, FallingWindow, BearishTasukiGap, BullishTasukiGap, ThreeBlackCrows, ThreeWhiteSoldiers, ConfirmedHammer, ConfirmedHangingMan, ConfirmedInvertedHammer, ConfirmedShootingStar, BigBlackCandle, BigWhiteCandle ) = Hammer,
TrendFilter( True ),
TrendFilterPrice( Close ),
TrendFilterPeriod( 5, 1 );

Variables:
trend, upTrend, downTrend, drawMarker, rHammer, rHangingMan, rBullishEngulfing, rBearishEngulfing,
rDarkCloudCover, rPiercingLine, rMorningStar, rEveningStar, rInvertedHammer, rShootingstar,
rBullishHarami, rBearishHarami, rDoji, rHaramiCrossBearish, rHaramiCrossBullish, rDragonflyDoji,
rGravestoneDoji, rTweezerTops, rTweezerBottoms, rBullishPitFall, rBearishPitFall, rBullishSunrise,
rBearishSunset, rBullishCounterattack, rBearishCounterattack, rRisingWindow, rFallingWindow,
rBearishTasukiGap, rBullishTasukiGap, rThreeBlackCrows, rThreeWhiteSoldiers, rConfirmedHammer,
rConfirmedHangingMan, rConfirmedInvertedHammer, rConfirmedShootingStar, rBigBlack, rBigWhite;

// Determine the trend, in this case using a simple method
trend = XAverage( TrendFilterPrice, TrendFilterPeriod );
upTrend = ( TrendFilter = False Or TrendFilterPrice > trend );
downTrend = ( TrendFilter = False Or TrendFilterPrice < trend );

// Identify which patterns are present on this bar
CandlePatterns( 20, 2.0, upTrend, downTrend,
rHammer, rHangingMan, rBullishEngulfing, rBearishEngulfing, rDarkCloudCover, rPiercingLine,
rMorningStar, rEveningStar, rInvertedHammer, rShootingstar, rBullishHarami, rBearishHarami,
rDoji, rHaramiCrossBearish, rHaramiCrossBullish, rDragonflyDoji, rGravestoneDoji,
rTweezerTops, rTweezerBottoms, rBullishPitFall, rBearishPitFall, rBullishSunrise,
rBearishSunset, rBullishCounterattack, rBearishCounterattack, rRisingWindow, rFallingWindow,
rBearishTasukiGap, rBullishTasukiGap, rThreeBlackCrows, rThreeWhiteSoldiers, rConfirmedHammer,
rConfirmedHangingMan, rConfirmedInvertedHammer, rConfirmedShootingStar, rBigBlack, rBigWhite );

// Depending on the chosen pattern determine if we have to draw a marker
drawMarker = False;
If Pattern = Hammer And rHammer Then drawMarker = True
Else If Pattern = HangingMan And rHangingMan Then drawMarker = True
Else If Pattern = BullishEngulfing And rBullishEngulfing Then drawMarker = True
Else If Pattern = BearishEngulfing And rBearishEngulfing Then drawMarker = True
Else If Pattern = DarkCloudCover And rDarkCloudCover Then drawMarker = True
Else If Pattern = PiercingLine And rPiercingLine Then drawMarker = True
Else If Pattern = MorningStar And rMorningStar Then drawMarker = True
Else If Pattern = EveningStar And rEveningStar Then drawMarker = True
Else If Pattern = InvertedHammer And rInvertedHammer Then drawMarker = True
Else If Pattern = Shootingstar And rShootingstar Then drawMarker = True
Else If Pattern = BullishHarami And rBullishHarami Then drawMarker = True
Else If Pattern = BearishHarami And rBearishHarami Then drawMarker = True
Else If Pattern = Doji And rDoji Then drawMarker = True
Else If Pattern = HaramiCrossBearish And rHaramiCrossBearish Then drawMarker = True
Else If Pattern = HaramiCrossBullish And rHaramiCrossBullish Then drawMarker = True
Else If Pattern = DragonflyDoji And rDragonflyDoji Then drawMarker = True
Else If Pattern = GravestoneDoji And rGravestoneDoji Then drawMarker = True
Else If Pattern = TweezerTops And rTweezerTops Then drawMarker = True
Else If Pattern = TweezerBottoms And rTweezerBottoms Then drawMarker = True
Else If Pattern = BullishPitFall And rBullishPitFall Then drawMarker = True
Else If Pattern = BearishPitFall And rBearishPitFall Then drawMarker = True
Else If Pattern = BullishSunrise And rBullishSunrise Then drawMarker = True
Else If Pattern = BearishSunset And rBearishSunset Then drawMarker = True
Else If Pattern = BullishCounterattack And rBullishCounterattack Then drawMarker = True
Else If Pattern = BearishCounterattack And rBearishCounterattack Then drawMarker = True
Else If Pattern = RisingWindow And rRisingWindow Then drawMarker = True
Else If Pattern = FallingWindow And rFallingWindow Then drawMarker = True
Else If Pattern = BearishTasukiGap And rBearishTasukiGap Then drawMarker = True
Else If Pattern = BullishTasukiGap And rBullishTasukiGap Then drawMarker = True
Else If Pattern = ThreeBlackCrows And rThreeBlackCrows Then drawMarker = True
Else If Pattern = ThreeWhiteSoldiers And rThreeWhiteSoldiers Then drawMarker = True
Else If Pattern = ConfirmedHammer And rConfirmedHammer Then drawMarker = True
Else If Pattern = ConfirmedHangingMan And rConfirmedHangingMan Then drawMarker = True
Else If Pattern = ConfirmedInvertedHammer And rConfirmedInvertedHammer Then drawMarker = True
Else If Pattern = ConfirmedShootingStar And rConfirmedShootingStar Then drawMarker = True
Else If Pattern = BigBlackCandle And rBigBlack Then drawMarker = True
Else If Pattern = BigWhiteCandle And rBigWhite Then drawMarker = True;

If drawMarker Then
DrawSymbol( low, "Candle Pattern", SymbolTriangleUp, 8 );


Thank you Khalid for any and all help.

Kindest regards,

Tim
Tim



"The measure of a man is not how many times he gets knocked down, but how many times he gets back up." Anonymous

"A man has to believe in something, I believe I will go fishing" Henry David Thoreau

flyingdutchmen
rank: <50 posts
rank: <50 posts
Posts: 6
Joined: Thu May 29, 2008 1:02 pm
Reputation: 0
Gender: Male

Re: kHALID

Postby flyingdutchmen » Sat Jun 07, 2008 1:49 am

if you wish to try this script i will have to provide you all the functions
( for each pattern ) i could do that but please let someone
experienced in programming take a look over it

equilla shouldnt be to different from easy language, if you are
able to programm equila you could program easy language as well
im not sure if it is the same the other way around i believe equilla
has some more advanced possibilitys

let someone check this script and i will give you all the funktions for it

raven4ns
rank: <50 posts
rank: <50 posts
Posts: 23
Joined: Thu Mar 20, 2008 9:07 pm
Reputation: 0
Gender: Male

Postby raven4ns » Sun Jun 08, 2008 10:53 pm

Thank you Dutchman for your kindness. I have no wish for someone to go to a lot of trouble on my behalf. I thought if someone had a script in EasyLanguage they wouldn't mind sharing it would be great. I will keep searching until I find something that does the job. Thank you again.

Tim
Tim



"The measure of a man is not how many times he gets knocked down, but how many times he gets back up." Anonymous

"A man has to believe in something, I believe I will go fishing" Henry David Thoreau

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.


Return to “beginners forum”