Script Pulse

Trade Pulse => Trade Pulse Support => Topic started by: kendrick on July 28, 2010, 12:57:15 PM

Title: tp algo question
Post by: kendrick on July 28, 2010, 12:57:15 PM
hi again,

im still curious about the algo :) wondering what does pow($Duin,0.333) mean and how come theres a pow in front
Title: Re: tp algo question
Post by: ip0li on July 29, 2010, 02:44:01 AM
pow — Exponential expression

http://php.net/manual/en/function.pow.php
Title: Re: tp algo question
Post by: kendrick on July 29, 2010, 03:17:40 AM
ah...gonna need my scientific calculator now...where did i put it after all this years....
Title: Re: tp algo question
Post by: ip0li on July 29, 2010, 03:29:10 AM
I found it you left it on my desk!

http://web2.0calc.com/

;)
Title: Re: tp algo question
Post by: kendrick on July 29, 2010, 07:41:06 AM
oh there it is  ;D
Title: Re: tp algo question
Post by: kendrick on August 02, 2010, 04:18:23 AM
another question !

if($Dout_r>100){
     $c=$Ca/$AverageCa;
     if($c>1.1)$c=1.1;
     if($c<0.9)$c=0.9;
     $P1*=$c;
     $P2*=$c;
     $P3*=$c;

just wondering what does $P1*=$c; mean.....also do i have to add a $c in p1 for this to take effect
Title: Re: tp algo question
Post by: ip0li on August 02, 2010, 04:39:53 AM
it means modify P1 points with click again value. I am telling you again if you don't understand this 500% don't touch algo your site will go downhill.
Title: Re: tp algo question
Post by: kendrick on August 02, 2010, 11:45:58 PM
no worries, im testing this on a 1k site only, actually so far so good for me  :D

Title: Re: tp algo question
Post by: kendrick on August 04, 2010, 07:20:02 PM
i am slowly becoming a php programmer