TRO PMSM TREND

post your indicators here

Moderator: moderators

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15544
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Postby TheRumpledOne » Fri Sep 21, 2007 12:56 am

jana wrote:Will take a look, thx rrobin.

TRO, I can get the TRO_PLOT to do it in radar but it is number and I think what I mean to say, slot style, block changes color as select ema's cross alerts. Looking for visual type.

Does the _TRO_PMSM_TREND not work in radar? No problem in charts, kinda want the same in radar.

Man, I hope all that made sense.

Now I need a beer, cheers !!!! :smt030


_SM_TREND is for radar. I call my radar indicators - SLOT MACHINES because when the colors line up, it pays off like a slot machine.

PMSM stands for POOR MAN'S SLOT MACHINE and was designed for the people who do NOT subscribe to radar. So PMSM indicators were not designed to work in radar.

PMSM indicators have an advantage in that there is a history of what happened so you can see profitable patterns.
IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!

Please do NOT PM me with trading or coding questions, post them in a thread.

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

User avatar
jana
rank: <50 posts
rank: <50 posts
Posts: 28
Joined: Sun May 20, 2007 6:36 pm
Reputation: 0
Location: Dallas, Texas
Gender: None specified

Postby jana » Fri Sep 21, 2007 1:35 am

I copied rrobins eld text into new and renamed it, found it to import into radar. How do I get the colored blocks like slot, it is displaying numbers ?

I am no good at this EL, so yes I need help. But I damn sure use them correctly. lol

Thanks

btw, rrobin I'm liking the ind. you posted, will see how she works and then put her into action.

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15544
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Postby TheRumpledOne » Sat Sep 22, 2007 8:10 pm

Use my Template and copy the code that loads the colors.

The Template:

Code: Select all


{ _SMAA_  }
   

{Attn: TradeStation
if this indicator is posted on the TradeStation Forum, I, TheRumpledOne, did NOT post it there,
so I can't be blamed for this indicator having my contact info.}


{Programmer:  Avery T. Horton, Jr.  aka TheRumpledOne,
gifts and donations accepted, PO Box 43575, Tucson, AZ 85733 }

{ ? Copyright 2007 Avery T. Horton, Jr.}

// xAppType = GetAppInfo(aiApplicationType);      // cUnknown = 0 cChart = 1  cRadarScreen = 2 cOptionStation = 3

 


Inputs:
 

iDecimals(2),


iMsgLong("LONG"),

iMsgShort("SHORT"),

iMsgFlat("FLAT"),


iMsgXAbove("XA"),

iMsgXBelow("XB");


 
 
variables:
 
xPeriods(60),
xInterval(0),

xAppType(0),
sFirstPass(true),
 
xInd(0),
tInd(""),
tAlert("")    ;

variables:
 
FG1(white),
BG1(black),

fg2(white),
bg2(black),

fg3(white),
bg3(black),

fg4(white),
bg4(black);
   



{commentary variables}
      
variables:
xcomm(0),
oComm1( "" ),    
oComm2( "" ),    
oComm3( "" ),    
oComm4( "" ),    
oComm5( "" ),
oComm6( "" ),
oComm7( "" ),
oComm8( "" ),
oComm9( "" ),    
oComm10( "" );
   

variables:

xDate(0),
xTime(0),         
xOpen(0),   
xClose(0),
xHigh(0),
xLow(0);

   

{first time through}
if barnumber = 1
if sFirstPass
then begin
   
sFirstPass = false;


{ APP TYPE TEST }
 
sFirstPass = false;

xAppType = GetAppInfo(aiApplicationType);        // cUnknown = 0 cChart = 1  cRadarScreen = 2 cOptionStation = 3

 



{bar test}

If bartype = 4
   then xInterval = 94
else
If bartype = 3
   then xInterval = 93
else
If bartype = 2
   then xInterval = 92
else
If bartype = 1
then begin
   xInterval = BarInterval;
end; { If bartype = 1  }

end; {if sFirstPass}
end; {if barnumber = 1}

{ INITIALIZE }

FG1 = WHITE;
BG1 = BLACK;

fg2 = WHITE;
bg2 = BLACK;

fg3 = WHITE;
bg3 = BLACK;

fg4 = WHITE;
bg4 = BLACK;

tInd   = "";
tAlert  = "";

xDate   = Date ;

xTime   = Time ;

xOpen    =  Open;

xClose   =  Close;

xHigh    =  High;

xLow    =  Low;

{ PROCESSING }
 


{ Alert criteria }

If xInd    > 0
then begin
   Fg1 = green;
   Bg1 = BLACK;
end
else
If xInd    < 0
then begin
   Fg1 = red;
   Bg1 = BLACK;
end
else
begin
   Fg1 = white;
   Bg1 = BLACK;
end;

{ Alert }

if tAlert <> ""
and tAlert <> tAlert[1]
   then Alert( tAlert ) ;


{ PLOT }

Plot1( tInd    , "Message", fg1 ) ;
SetPlotBGColor( 1, bg1);

{
Plot2( xFreeShares  , "Free Shares ", fg2 ) ;
SetPlotBGColor( 2, bg2);
}

Plot3( LPT, "LPT", fg3 ) ;
SetPlotBGColor( 3, bg3);

Plot4( SPT , "SPT", fg4 ) ;
SetPlotBGColor( 4, bg4);
 



xComm = _fCommentary(oComm1, oComm2, oComm3, oComm4, oComm5, oComm6, oComm7, oComm8, oComm9, oComm10);

CommentaryCl(oComm1 );

CommentaryCl(oComm2 );
CommentaryCl(oComm3 );
CommentaryCl(oComm4 );
CommentaryCl(oComm5 );
CommentaryCl(oComm6 );
CommentaryCl(oComm7 );
CommentaryCl(oComm8 );
CommentaryCl(oComm9 );
CommentaryCl(oComm10 );

 {
CommentaryCl( "Open_AvgCost: ", NumToStr( Open_AvgCost , iDecimals) );


CommentaryCl( "xInd: ", NumToStr( xInd , iDecimals) );
 
CommentaryCl( "Date: ", ELDateToString(Date) );



CommentaryCl( "xFreeShares: ", NumToStr( xFreeShares , 0 ) );

}
IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!



Please do NOT PM me with trading or coding questions, post them in a thread.

User avatar
jana
rank: <50 posts
rank: <50 posts
Posts: 28
Joined: Sun May 20, 2007 6:36 pm
Reputation: 0
Location: Dallas, Texas
Gender: None specified

Postby jana » Sun Sep 23, 2007 4:21 pm

Have tried this with your trend and also the macd trend with no luck getting it verified. It keeps finding errors.

Would you be able to post the complete code for your "trend ind." for radar. It would make it so much easier if I can
watch radar for entries on my set-ups instead of lots of charts. I like your trend for entries on a 60 min and rrobins on
daily charts Guess you could call the radar style idiot lights, :lol:

Being a single parent now takes most of my time. I am trying to make back the money my :smt068 "X" got after legal, that
@*!*$%# !!!!!!

Since I have used your stuff my trades are excellent.

When I get it all put together and working I will post some screens so others can see and use if wanted.


Thank you !!! :D

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15544
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Postby TheRumpledOne » Sun Sep 23, 2007 7:51 pm

jana:

The trend indicator code for radar is in the Motherlodes.

I was fooling around and wrote a version that has 8 emas.

Maybe, I'll post it later.
IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!



Please do NOT PM me with trading or coding questions, post them in a thread.

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

rrobin
rank: 50+ posts
rank: 50+ posts
Posts: 112
Joined: Fri May 19, 2006 11:09 am
Reputation: 0
Location: Cedar Creek Lake, Texas
Gender: Male

Postby rrobin » Mon Sep 24, 2007 11:51 am

jana:

I thought I uploaded the ELD .

HTH

rr
Attachments
_SM_Trend_SAK_ MACD.ELD
(9.63 KiB) Downloaded 314 times

Karla
rank: <50 posts
rank: <50 posts
Posts: 2
Joined: Mon May 22, 2006 3:36 pm
Reputation: 0
Gender: None specified

Postby Karla » Tue Oct 02, 2007 12:16 pm

hi all,

i know it's a little late for this question but maybe someone can help.

rrobin showd in his chart from 06.03.2007 some price indicators.
red and blue dot's on the price chart.
can any kind soul tell me the name of what is rrobin is using ( maybe rrobin will read this too *g)

i have serach through the whole forum and i don't know if this is the tro_dynamic_sr?
mine is looking so different.
and i don't guess this is because i'm still using ts2k.

any help would be great
thanks
karla


rrobin wrote:I used TRO Plot to show profit or loss and altered colors on TRO PMSM Trend.

Look like 4 macd dot can be profitable on APPL.

I do not know how to program, but the TRO tools give me a way to gte the job done.

Thanks

rr


rrobin
rank: 50+ posts
rank: 50+ posts
Posts: 112
Joined: Fri May 19, 2006 11:09 am
Reputation: 0
Location: Cedar Creek Lake, Texas
Gender: Male

Postby rrobin » Tue Oct 02, 2007 4:00 pm

Karla

This should be in TRO's Mother Loads

_SHME_Dynamic_SR2

rr

Karla
rank: <50 posts
rank: <50 posts
Posts: 2
Joined: Mon May 22, 2006 3:36 pm
Reputation: 0
Gender: None specified

Postby Karla » Tue Oct 02, 2007 5:49 pm

thanks rr

i thought it was tro pmsm hl indicator.

anyway i will try it.

karla

User avatar
jana
rank: <50 posts
rank: <50 posts
Posts: 28
Joined: Sun May 20, 2007 6:36 pm
Reputation: 0
Location: Dallas, Texas
Gender: None specified

Postby jana » Sun Nov 11, 2007 10:59 pm

rrobin, sorry for the late reply. I have it working no problem. Thx.

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


Return to “Tradestation indicators”