eSignal INDICATOR UPDATES

eSignal indicators

Moderator: moderators

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

eSignal INDICATOR UPDATES

Postby TheRumpledOne » Mon Apr 02, 2007 3:12 am

eSignal INDICATOR UPDATES:

TRO_CANDLECOLOR2

TRO_SM_CONTROL_PMSM6




I added the iHistory input switch to TRO_CANDLECOLOR2 and TRO_SM_CONTROL_PMSM6 so they load faster.

The default is FALSE so the indicators will load as fast as possible.

If iHistory is set to TRUE then the indicators will calculate all the history for the indicator.

EFS attached.

NOTE: TRO_CANDLECOLOR2 updated again 4/2/2007
Attachments
TRO_SM_CandleColor2.EFS
(20.4 KiB) Downloaded 725 times
TRO_SM_CONTROL_PMSM6.EFS
(49.32 KiB) Downloaded 716 times
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.

cvax
rank: 50+ posts
rank: 50+ posts
Posts: 83
Joined: Sun May 13, 2007 12:45 am
Reputation: 0
Gender: None specified

Postby cvax » Fri Aug 10, 2007 10:06 pm

TRO, can I get written permission to rewrite and redistribute CandleColor2 in C# for the NinjaTrader/kreslik community?

Rarely see you put copyright stuff on your indicators so that was interesting to see.

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

Postby TheRumpledOne » Mon Aug 13, 2007 12:43 pm

Yes, go ahead.

I put copyright on all of my indicators after TS banned me.
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
Patch
rank: 500+ posts
rank: 500+ posts
Posts: 941
Joined: Sat Jan 06, 2007 6:13 pm
Reputation: 0
Location: Virginia
Real name: Jeff
Gender: Male
Contact:

Postby Patch » Mon Aug 13, 2007 12:48 pm

TRO and EVERYONE

IT IS GOOD TO BE BACK ON THE NET WITH KRESLIK.

JEFF
In VA
Patch the Pirate
In the Pirate's Cove
ENOUGH being a Yalie for me Back to the Sea. "What i can lose, i can win" "YES YOU CAN" - dragon33 -"Pick one method and one pair and stick with them until you master it. "The choice is yours - success or failure." TRO

terryh
rank: <50 posts
rank: <50 posts
Posts: 2
Joined: Mon May 26, 2008 1:49 am
Reputation: 0
Gender: None specified

Postby terryh » Mon Jun 09, 2008 10:54 pm

I believe there maybe a logic flaw in most of the trend counters:

if( cBarState ==BARSTATE_NEWBAR) {
if( tTrendB == tTrendB1 ) { xTrendB = xTrendB + 1 ; } // TREND COUNT CODE
else { xTrendB = 1 ; } // TREND COUNT CODE

tTrendB1 = tTrendB ; // TREND COUNT CODE
}

This looks at the chart for a new bar, then counts the last trend counter.
When the interval is less then the chart not counts happen.
When the interval is greater then the chart the trend is counted repeatedly.

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

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

Postby TheRumpledOne » Tue Jun 10, 2008 4:56 pm

I'll have to check that out..thanks
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.

terryh
rank: <50 posts
rank: <50 posts
Posts: 2
Joined: Mon May 26, 2008 1:49 am
Reputation: 0
Gender: None specified

Postby terryh » Tue Jun 10, 2008 5:13 pm

NP. I have not come up with a fix for that yet, but I did have a couple others that I added.

=============================
function fPctInRange( uPrice, uHigh, uLow ) {
//Sometimes fPctInRange returns bad data when uHigh and uLow match at the start of bars.
oPct = (uPrice - uLow) / (uHigh -uLow) * 100;

if ( oPct > 100 ) { oPct = 100; }
if (oPct < 0 ) { oPct = 0; }
if ( isNaN( oPct ) ) { oPct = 0; }

oPct = (Math.round(oPct * 100)) * .01 ; //Rounds to 2 decimal precision

// oPct = ( oPct - 50 ) * 2 ; // scale -100 to + 100

return ( oPct.toFixed(0) ) ;
}

=======================

Rewrote the script to use a for loop and case statements.
Mostly trying to work up my java/efs script skills.

Lots of interesting ideas and insights in the scripts and site.
Thanks.

gailbros
rank: <50 posts
rank: <50 posts
Posts: 1
Joined: Sun Oct 26, 2008 11:42 am
Reputation: 0
Gender: Male
Contact:

Postby gailbros » Sun Oct 26, 2008 12:00 pm

hell TRO, i am here on your site now, i still cant find the e book you told me to download for tutorial on how to use the indicator on forex, i really need a well explained indicator so as to start trading, i have lost alot of money on forex already...

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15558
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 Oct 26, 2008 4:29 pm

Click here
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.


Return to “eSignal indicators”