Author Topic: More variables available in Custom Algorithm  (Read 20465 times)

0 Members and 1 Guest are viewing this topic.

Offline allniche

  • Full Member
  • ***
  • Posts: 110
    • View Profile
More variables available in Custom Algorithm
« on: August 04, 2011, 04:59:42 PM »
The custom algorithm feature in Trade Pulse is *extremely* powerful in my opinion and gives it the edge over many other scripts. :)

That said there are more variables and hooks I'd love to be able to use within a custom algorithm such as:

[Unique/raw] Clicks to Trades/Trade Clicks (Hourly and Daily)
Unique Proxy Clicks (Hourly and Daily)
[Unique/raw] NoImg Clicks (Hourly and Daily)
[Unique/raw] Filtered Clicks (Hourly and Daily)
[Unique/raw] NoCookie Clicks (Hourly and Daily)
[Unique/raw] Clicks From G-N-B countries respectively (Hourly and Daily)

I don't know if some of these are available but I just don't see them documented yet.  Maybe?

Offline ip0li

  • miSearkXD
  • Administrator
  • Hero Member
  • *****
  • Posts: 1952
    • View Profile
    • Premier Сasual Dating Real-life Girls
Re: More variables available in Custom Algorithm
« Reply #1 on: August 06, 2011, 04:46:51 AM »
Under box where you edit algorithm code please check for Variables

U will see majority of what you requested is there.

Cheers

Offline allniche

  • Full Member
  • ***
  • Posts: 110
    • View Profile
Re: More variables available in Custom Algorithm
« Reply #2 on: August 09, 2011, 05:42:23 PM »
Under box where you edit algorithm code please check for Variables

U will see majority of what you requested is there.

Cheers

ip0li,

Thanks, I already saw those variables there but am wondering if there are any others as well which I might be able to use as part of a custom algorithm.

For example I am using this as part of my custom algorithm to avoid counting proxy clicks when calculating points:

Code: [Select]
$a=($Dclick-$Dproxyclick);
$b=($Hclick-$Hproxyclick);

But would love it if for instance there were a way I could also add code to better handle Nocookie and NoImage traffic within my custom algorithm itself (without having to rely on anticheat modifiers).  Like how I don't count proxy clicks within the algorithm above since they are subtracted out.  I would love to do the same thing also with NoImage and NoCookie clicks.  And maybe experiment with some sort of Effect rating which uses Trade Effect (clicks sent to trades from a given trade) as opposed to just Effect.  To do that I would need for instance a variable which tracks how many "Trade Clicks" (Instead of just Clicks) a Hits In from a certain trade made.

So I am just wondering if there are any other variables I can use which aren't listed there on the page you described? :)
« Last Edit: August 09, 2011, 05:44:14 PM by allniche »

Offline ip0li

  • miSearkXD
  • Administrator
  • Hero Member
  • *****
  • Posts: 1952
    • View Profile
    • Premier Сasual Dating Real-life Girls
Re: More variables available in Custom Algorithm
« Reply #3 on: August 12, 2011, 03:34:37 AM »
No, you cant use any other variables except those. They are all available ones.

Offline allniche

  • Full Member
  • ***
  • Posts: 110
    • View Profile
Re: More variables available in Custom Algorithm
« Reply #4 on: August 12, 2011, 11:44:53 AM »
No, you cant use any other variables except those. They are all available ones.

Thank you for the quick answer.   :)

Offline allniche

  • Full Member
  • ***
  • Posts: 110
    • View Profile
Re: More variables available in Custom Algorithm
« Reply #5 on: August 12, 2011, 08:51:14 PM »

Code: [Select]
$Dtradeout Last 24 hours trade OUT
$Htradeout Last hour trade OUT

I see "Trade out" was there as you said all along.  Sorry for missing it.