Bitcoin Forum
April 25, 2024, 01:08:15 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 [2] 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 ... 56 »
  Print  
Author Topic: Bitcointalk Account price estimator  (Read 164788 times)
melisande
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250



View Profile
August 04, 2015, 09:19:52 PM
 #21

Really cool project, only problem I see with it is that account prices seem a little high, but that's an easy fix. A cool final presentation of this project would be to put it on a webpage as you planned, and then have it automated by a bot. You insert your UID, click a button and then it'll estimate your account's value.

Like hexafraction mentioned, your original idea could easily be programmed with Javascript as well. I'm not sure how easy or feasible it would be to implement a bot with Javascript though, you might want to look into another language - it seems like lots of the sig campaign bots here are coded with PHP.
The problem is that I don't know javascript or PHP very well. What I am actually using is GWT which will convert my java code into javascript. It seems to work decently well.
I don't understand much codes but I will prefer this project to be concluded by releasing it as a GUI simple software and not in codes.
1714050495
Hero Member
*
Offline Offline

Posts: 1714050495

View Profile Personal Message (Offline)

Ignore
1714050495
Reply with quote  #2

1714050495
Report to moderator
1714050495
Hero Member
*
Offline Offline

Posts: 1714050495

View Profile Personal Message (Offline)

Ignore
1714050495
Reply with quote  #2

1714050495
Report to moderator
In order to get the maximum amount of activity points possible, you just need to post once per day on average. Skipping days is OK as long as you maintain the average.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714050495
Hero Member
*
Offline Offline

Posts: 1714050495

View Profile Personal Message (Offline)

Ignore
1714050495
Reply with quote  #2

1714050495
Report to moderator
1714050495
Hero Member
*
Offline Offline

Posts: 1714050495

View Profile Personal Message (Offline)

Ignore
1714050495
Reply with quote  #2

1714050495
Report to moderator
ColderThanIce
Sr. Member
****
Offline Offline

Activity: 373
Merit: 252



View Profile
August 04, 2015, 09:26:11 PM
Last edit: August 04, 2015, 10:52:55 PM by ColderThanIce
 #22

I don't understand much codes but I will prefer this project to be concluded by releasing it as a GUI simple software and not in codes.
It sounds like he's planning to release it in the form of a web page you go to, input some information into textboxes, and then it'll give you a value for the account. We were just discussing how we'd go about coding it.



I was just able to whip the page up in Javascript (felt like doing it as a small project) and here's the result:

Code:
<!-- Created by ColderThanIce on Bitcointalk. UID 429511. -->

<html>  
<head>  
<title>Bitcointalk Account Value Calculator</title>  
<script type="text/javascript">
var quality
var trust
var currentactivity = 0
var potential = 0
var qualitymultiplier = 0
var trustmultiplier = 0
var finalprice = 0
var potentialactivity

function AccountValue(form)
{
currentactivity = form.activity.value
potential = form.potentialactivity.value
trust = form.trustrating.value
quality = form.postquality.value

// Determine the quality value selected, and set the multiplier to the correct amount
switch(quality)
{
case "excellent":
qualitymultiplier = 1.10;
break;
case "good":
qualitymultiplier = 1.025;
break;
case "fair":
qualitymultiplier = 1.00;
break;
case "poor":
qualitymultiplier = 0.975;
break;
case "bad":
qualitymultiplier = 0.95;
break;
}

//Determine the trust level selected, and set the multiplier to the correct amount
switch(trust)
{
case "darkgreen":
trustmultiplier = 1.20;
break;
case "lightgreen":
trustmultiplier = 1.10;
break;
case "neutral":
trustmultiplier = 1.00;
break;
case "negative":
trustmultiplier = 0.15;
break;
}

//Determine the difference between the account's activity and the account's potential activity
potentialactivity = (potential - currentactivity)

//Calculate final value of the account and round it to a maximum of eight decimal places
finalprice = ((0.00075 * currentactivity) + (0.000375 * potentialactivity)) * qualitymultiplier * trustmultiplier
finalprice = + finalprice.toFixed(8)

//Let the user know what the final value of the account is
alert("The account you entered is worth " + finalprice + " BTC.")
}
</script>  
<body>  
<form name="information">
<b><u>Post Quality</b></u><br>
<input type="radio" name="postquality" value="excellent">Excellent<br>
<input type="radio" name="postquality" value="good">Good<br>
<input type="radio" name="postquality" value="fair">Fair<br>
<input type="radio" name="postquality" value="poor">Poor<br>
<input type="radio" name="postquality" value="bad">Very Poor<br>


<b><u>Trust Rating</b></u><br>
<input type="radio" name="trustrating" value="darkgreen">Dark Green Positive Trust<br>  
<input type="radio" name="trustrating" value="lightgreen">Light Green Positive Trust<br>  
<input type="radio" name="trustrating" value="neutral">Neutral Trust<br>
<input type="radio" name="trustrating" value="negative">Negative Trust<br>
<br>


Account's Current Activity:
<input type="text" name="activity"><br>

Account's Potential Activity:
<input type="text" name="potentialactivity"><br>
<input type="button" name="button" value="Get Account Value" onClick="AccountValue(this.form)"><br>
</form>  
</form>  
</body>  
</html>

Copy that code, save the file as a .html and test it out, seems to work as it should at least on my end.

ROLLIN.IO  BITCOIN   DICE   GAME
   ⚁    ⚂    ⚃    ⚄   ⚅   ⚁   ⚂
                                        ███████████████████    
                                      ██                                    ██
                                      ██                                    ██              
                                      ██                                    ██ 
                                      ██                                    ██
                                      ██                                    ██
      ██████████████████                                    ██
      ██                            ██                                    ██
      ██                            ██                                    ██  
      ██                            ██                                    ██
      ██                            ██████████            ██████
      ██                            ██              ██          ██
      ██                            ██                 ██       ██
      ██                            ██                    ██    ██
      ███████        ███████                        ████
                ██     ██
                ██  ██
                ████
             
███████████
S  O  C  I  A  L
C H A T T I N G
                    ██
                  ████
                ██████
              ████████
            ██████████
          ████████████
        ██████████████
      ████████████████
    ██████████████████
  ████████████████████ 
              ████████
              ████████

              ████████

              ████████
██████████████
LEVEL UP SYSTEM
   WITH REWADS
                ██████
              ████████
            ██████████
          ████████████
        ██████████████
    ██████████████████
  ████████████████████
█         ████████████████
█         ████████████████
█         ████████████████
█         ████████████████
   ██████████████████ 
     ████████████████
        █████████████
           ██████████
                █████
██████████████
 FREE BITCOINS
melisande
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250



View Profile
August 04, 2015, 10:28:01 PM
 #23

I don't understand much codes but I will prefer this project to be concluded by releasing it as a GUI simple software and not in codes.
It sounds like he's planning to release it in the form of a web page you go to, input some information into textboxes, and then it'll give you a value for the account. We were just discussing how we'd go about coding it.



I was just able to whip the page up in Javascript (felt like doing it as a small project) and here's the result:

Code:
<!-- Created by ColderThanIce on Bitcointalk. UID 429511. -->

<html> 
<head> 
<title>Bitcointalk Account Value Calculator</title> 
<script type="text/javascript">
var quality
var trust
var currentactivity = 0
var potential = 0
var qualitymultiplier = 0
var trustmultiplier = 0
var finalprice = 0
var potentialactivity

function AccountValue(form)
{
currentactivity = form.activity.value
potential = form.potentialactivity.value
trust = form.trustrating.value
quality = form.postquality.value

// Determine the quality value selected, and set the multiplier to the correct amount
switch(quality)
{
case "excellent":
qualitymultiplier = 1.10;
break;
case "good":
qualitymultiplier = 1.025;
break;
case "fair":
qualitymultiplier = 1.00;
break;
case "poor":
qualitymultiplier = 0.975;
break;
case "bad":
qualitymultiplier = 0.95;
break;
}

//Determine the trust level selected, and set the multiplier to the correct amount
switch(trust)
{
case "darkgreen":
trustmultiplier = 1.20;
break;
case "lightgreen":
trustmultiplier = 1.10;
break;
case "neutral":
trustmultiplier = 1.00;
break;
case "negative":
trustmultiplier = 0.15;
break;
}

//Determine the difference between the account's activity and the account's potential activity
potentialactivity = (potential - currentactivity)

//Calculate final value of the account and round it to a maximum of eight decimal places
finalprice = ((0.00075 * currentactivity) + (0.000375 * potentialactivity)) * qualitymultiplier * trustmultiplier
finalprice = + finalprice.toFixed(8)

//Let the user know what the final value of the account is
alert("The account you entered is worth " + finalprice + " BTC.")
}
</script> 
<body> 
<form name="information">
<b><u>Post Quality</b></u><br>
<input type="radio" name="postquality" value="excellent">Excellent<br>
<input type="radio" name="postquality" value="good">Good<br>
<input type="radio" name="postquality" value="fair">Fair<br>
<input type="radio" name="postquality" value="poor">Poor<br>
<input type="radio" name="postquality" value="bad">Very Poor<br>


<b><u>Trust Rating</b></u><br>
<input type="radio" name="trustrating" value="darkgreen">Dark Green Positive Trust<br> 
<input type="radio" name="trustrating" value="lightgreen">Light Green Positive Trust<br> 
<input type="radio" name="trustrating" value="neutral">Neutral Trust<br>
<input type="radio" name="trustrating" value="negative">Negative Trust<br>
<br>


Account's Current Activity:
<input type="text" name="activity"><br>

Account's Potential Activity:
<input type="text" name="potentialactivity"><br>
<input type="button" name="button" value="Get Account Value" onClick="AccountValue(this.form)"><br>
</form> 
</form> 
</body> 
</html>

Copy that code, save the file as a .html and test it out, seems to work as it should at least on my end.
website will be awesome because it will be pretty easy to use.
The code you sent will be saves using ntepad, wordpad or pdf, sorry I am a complete moron when it comes to all these programme languages but I also have my great strength in some other areas.
hexafraction
Sr. Member
****
Offline Offline

Activity: 392
Merit: 259

Tips welcomed: 1CF4GhXX1RhCaGzWztgE1YZZUcSpoqTbsJ


View Profile
August 04, 2015, 11:36:47 PM
 #24


website will be awesome because it will be pretty easy to use.
The code you sent will be saves using ntepad, wordpad or pdf, sorry I am a complete moron when it comes to all these programme languages but I also have my great strength in some other areas.

Notepad/plain text (with .html extension). Absolutely NO useful programming languages are saved as wordpad's .RTF or as PDFs. None. Additionally, if you aren't experienced with programming, you shouldn't copy-and-paste random code that you can't check for security, if you cannot trust the author 100%.

Anyway, it seems that you might be using Windows. I suggest not doing so, for reasons of security.

Quote
I don't understand much codes but I will prefer this project to be concluded by releasing it as a GUI simple software and not in codes.

In my personal opinion, GUIs are a pain for the programmer. You can't 'prefer' that the OP concludes it as a GUI, since it might mean extra work, especially if they weren't doing it for web, and they're doing it for free as a service to the community. GUIs require more time, effort, and maintenance. At least for non-web contexts, a command-line application is a completely reasonable way of doing things.

I have recently become active again after a long period of inactivity. Cryptographic proof that my account has not been compromised is available.
achow101 (OP)
Staff
Legendary
*
Offline Offline

Activity: 3374
Merit: 6535


Just writing some code


View Profile WWW
August 05, 2015, 01:48:33 AM
 #25

In my personal opinion, GUIs are a pain for the programmer. You can't 'prefer' that the OP concludes it as a GUI, since it might mean extra work, especially if they weren't doing it for web, and they're doing it for free as a service to the community. GUIs require more time, effort, and maintenance. At least for non-web contexts, a command-line application is a completely reasonable way of doing things.
GUIs are a pain, but fortunately GWT is very helpful and this gui is incredibly simple. Here is a screenshot



The code is available on github now. You can browse the code at https://github.com/achow101/BitcointalkAccountPricer. Pull requests are welcomed as are donations to 16mT7jrpkjnJBD7a3TM2awyxHub58H6r6Z.
I will update when I get a server setup for the website. For now, you can download GWT, compile the code yourself, and do your own price estimation.

el kaka22
Legendary
*
Offline Offline

Activity: 3500
Merit: 1162


www.Crypto.Games: Multiple coins, multiple games


View Profile
August 05, 2015, 01:54:30 AM
 #26

Just see this, and it is a good service Smiley However, this will means a newbie of 14 activity, neutral trust and normal post quality worth 0.0105 BTC! Maybe you can adjust the algorithm?

█████████████████████████
███████▄▄▀▀███▀▀▄▄███████
████████▄███▄████████
█████▄▄█▀▀███▀▀█▄▄█████
████▀▀██▀██████▀██▀▀████
████▄█████████████▄████
███████▀███████▀███████
████▀█████████████▀████
████▄▄██▄████▄██▄▄████
█████▀▀███▀▄████▀▀█████
████████▀███▀████████
███████▀▀▄▄███▄▄▀▀███████
█████████████████████████
.
 CRYPTOGAMES 
.
 Catch the winning spirit! 
█▄░▀███▌░▄
███▄░▀█░▐██▄
▀▀▀▀▀░░░▀▀▀▀▀
████▌░▐█████▀
████░░█████
███▌░▐███▀
███░░███
██▌░▐█▀
PROGRESSIVE
      JACKPOT      
██░░▄▄
▀▀░░████▄
▄▄▄▄██▀░░▄▄
░░░▀▀█░░▀██▄
███▄░░▀▄░█▀▀
█████░░█░░▄▄█
█████░░██████
█████░░█░░▀▀█
LOW HOUSE
         EDGE         
██▄
███░░░░░░░▄▄
█▀░░░░░░░████
█▄░░░░░░░░█▀
██▄░░░░░░▄█
███▄▄░░▄██▌
██████████
█████████▌
PREMIUM VIP
 MEMBERSHIP 
DICE   ROULETTE   BLACKJACK   KENO   MINESWEEPER   VIDEO POKER   PLINKO   SLOT   LOTTERY
Coins168
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
August 05, 2015, 01:54:46 AM
 #27

this is a good project and a nice tool for those who wants to start their lending business here. good job!
achow101 (OP)
Staff
Legendary
*
Offline Offline

Activity: 3374
Merit: 6535


Just writing some code


View Profile WWW
August 05, 2015, 02:12:58 AM
 #28

Just see this, and it is a good service Smiley However, this will means a newbie of 14 activity, neutral trust and normal post quality worth 0.0105 BTC! Maybe you can adjust the algorithm?
Yeah, I noticed. I think it is going to have to be a logarithmic scale instead of linear. That will require some more time to figure out.

For now, I have a disclaimer Grin

Jeremycoin
Legendary
*
Offline Offline

Activity: 1022
Merit: 1003


𝓗𝓞𝓓𝓛


View Profile
August 05, 2015, 02:38:45 AM
 #29

What a useful thing, now everyone no need to confuse about the account price here. Cheesy

Good job, keep working on it!

faucet used to be profitable
avatar_kiyoshi
Legendary
*
Offline Offline

Activity: 1106
Merit: 1000



View Profile
August 05, 2015, 09:21:31 AM
 #30

Awesome! this project is very useful! I have planning to sell an account, this is very useful. Great work.

I don't understand much codes but I will prefer this project to be concluded by releasing it as a GUI simple software and not in codes.
It sounds like he's planning to release it in the form of a web page you go to, input some information into textboxes, and then it'll give you a value for the account. We were just discussing how we'd go about coding it.



I was just able to whip the page up in Javascript (felt like doing it as a small project) and here's the result:

Code:
<!-- Created by ColderThanIce on Bitcointalk. UID 429511. -->

<html> 
<head> 
<title>Bitcointalk Account Value Calculator</title> 
<script type="text/javascript">
var quality
var trust
var currentactivity = 0
var potential = 0
var qualitymultiplier = 0
var trustmultiplier = 0
var finalprice = 0
var potentialactivity

function AccountValue(form)
{
currentactivity = form.activity.value
potential = form.potentialactivity.value
trust = form.trustrating.value
quality = form.postquality.value

// Determine the quality value selected, and set the multiplier to the correct amount
switch(quality)
{
case "excellent":
qualitymultiplier = 1.10;
break;
case "good":
qualitymultiplier = 1.025;
break;
case "fair":
qualitymultiplier = 1.00;
break;
case "poor":
qualitymultiplier = 0.975;
break;
case "bad":
qualitymultiplier = 0.95;
break;
}

//Determine the trust level selected, and set the multiplier to the correct amount
switch(trust)
{
case "darkgreen":
trustmultiplier = 1.20;
break;
case "lightgreen":
trustmultiplier = 1.10;
break;
case "neutral":
trustmultiplier = 1.00;
break;
case "negative":
trustmultiplier = 0.15;
break;
}

//Determine the difference between the account's activity and the account's potential activity
potentialactivity = (potential - currentactivity)

//Calculate final value of the account and round it to a maximum of eight decimal places
finalprice = ((0.00075 * currentactivity) + (0.000375 * potentialactivity)) * qualitymultiplier * trustmultiplier
finalprice = + finalprice.toFixed(8)

//Let the user know what the final value of the account is
alert("The account you entered is worth " + finalprice + " BTC.")
}
</script> 
<body> 
<form name="information">
<b><u>Post Quality</b></u><br>
<input type="radio" name="postquality" value="excellent">Excellent<br>
<input type="radio" name="postquality" value="good">Good<br>
<input type="radio" name="postquality" value="fair">Fair<br>
<input type="radio" name="postquality" value="poor">Poor<br>
<input type="radio" name="postquality" value="bad">Very Poor<br>


<b><u>Trust Rating</b></u><br>
<input type="radio" name="trustrating" value="darkgreen">Dark Green Positive Trust<br> 
<input type="radio" name="trustrating" value="lightgreen">Light Green Positive Trust<br> 
<input type="radio" name="trustrating" value="neutral">Neutral Trust<br>
<input type="radio" name="trustrating" value="negative">Negative Trust<br>
<br>


Account's Current Activity:
<input type="text" name="activity"><br>

Account's Potential Activity:
<input type="text" name="potentialactivity"><br>
<input type="button" name="button" value="Get Account Value" onClick="AccountValue(this.form)"><br>
</form> 
</form> 
</body> 
</html>

Copy that code, save the file as a .html and test it out, seems to work as it should at least on my end.

I have been try your code in html, the algo is correct? Because when i try to input my account spec there, the price is worth 0.3 BTC Shocked
DaddyMonsi
Legendary
*
Offline Offline

Activity: 1344
Merit: 1006


View Profile WWW
August 05, 2015, 09:30:04 AM
 #31

Awesome! this project is very useful! I have planning to sell an account, this is very useful. Great work.

I don't understand much codes but I will prefer this project to be concluded by releasing it as a GUI simple software and not in codes.
It sounds like he's planning to release it in the form of a web page you go to, input some information into textboxes, and then it'll give you a value for the account. We were just discussing how we'd go about coding it.



I was just able to whip the page up in Javascript (felt like doing it as a small project) and here's the result:

Code:
<!-- Created by ColderThanIce on Bitcointalk. UID 429511. -->

<html>  
<head>  
<title>Bitcointalk Account Value Calculator</title>  
<script type="text/javascript">
var quality
var trust
var currentactivity = 0
var potential = 0
var qualitymultiplier = 0
var trustmultiplier = 0
var finalprice = 0
var potentialactivity

function AccountValue(form)
{
currentactivity = form.activity.value
potential = form.potentialactivity.value
trust = form.trustrating.value
quality = form.postquality.value

// Determine the quality value selected, and set the multiplier to the correct amount
switch(quality)
{
case "excellent":
qualitymultiplier = 1.10;
break;
case "good":
qualitymultiplier = 1.025;
break;
case "fair":
qualitymultiplier = 1.00;
break;
case "poor":
qualitymultiplier = 0.975;
break;
case "bad":
qualitymultiplier = 0.95;
break;
}

//Determine the trust level selected, and set the multiplier to the correct amount
switch(trust)
{
case "darkgreen":
trustmultiplier = 1.20;
break;
case "lightgreen":
trustmultiplier = 1.10;
break;
case "neutral":
trustmultiplier = 1.00;
break;
case "negative":
trustmultiplier = 0.15;
break;
}

//Determine the difference between the account's activity and the account's potential activity
potentialactivity = (potential - currentactivity)

//Calculate final value of the account and round it to a maximum of eight decimal places
finalprice = ((0.00075 * currentactivity) + (0.000375 * potentialactivity)) * qualitymultiplier * trustmultiplier
finalprice = + finalprice.toFixed(8)

//Let the user know what the final value of the account is
alert("The account you entered is worth " + finalprice + " BTC.")
}
</script>  
<body>  
<form name="information">
<b><u>Post Quality</b></u><br>
<input type="radio" name="postquality" value="excellent">Excellent<br>
<input type="radio" name="postquality" value="good">Good<br>
<input type="radio" name="postquality" value="fair">Fair<br>
<input type="radio" name="postquality" value="poor">Poor<br>
<input type="radio" name="postquality" value="bad">Very Poor<br>


<b><u>Trust Rating</b></u><br>
<input type="radio" name="trustrating" value="darkgreen">Dark Green Positive Trust<br>  
<input type="radio" name="trustrating" value="lightgreen">Light Green Positive Trust<br>  
<input type="radio" name="trustrating" value="neutral">Neutral Trust<br>
<input type="radio" name="trustrating" value="negative">Negative Trust<br>
<br>


Account's Current Activity:
<input type="text" name="activity"><br>

Account's Potential Activity:
<input type="text" name="potentialactivity"><br>
<input type="button" name="button" value="Get Account Value" onClick="AccountValue(this.form)"><br>
</form>  
</form>  
</body>  
</html>

Copy that code, save the file as a .html and test it out, seems to work as it should at least on my end.

I have been try your code in html, the algo is correct? Because when i try to input my account spec there, the price is worth 0.3 BTC Shocked

I tried using that HTML code
what do you put in accounts potential activity?
I left it blank and selected
Post Activity = fair
Trust Rating = neutral
Accounts current activity = 84
Potential Activity = Huh

Result is = 0.0315BTC
avatar_kiyoshi
Legendary
*
Offline Offline

Activity: 1106
Merit: 1000



View Profile
August 05, 2015, 11:35:19 AM
 #32

-snip

I tried using that HTML code
what do you put in accounts potential activity?
I left it blank and selected
Post Activity = fair
Trust Rating = neutral
Accounts current activity = 84
Potential Activity = Huh

Result is = 0.0315BTC


I set:
Post Quality: Fair
Trust: Neutral
Account's Current Activity: 210
Account's Potential Activity: 607
am i wrong? i should leave account potential blank?

Edit: when i leave potential account blank the result is my account worth as 0.078 BTC.
ColderThanIce
Sr. Member
****
Offline Offline

Activity: 373
Merit: 252



View Profile
August 05, 2015, 12:53:34 PM
Last edit: August 05, 2015, 01:15:36 PM by ColderThanIce
 #33

I tried using that HTML code
what do you put in accounts potential activity?
I left it blank and selected
Post Activity = fair
Trust Rating = neutral
Accounts current activity = 84
Potential Activity = Huh

Result is = 0.0315BTC


I set:
Post Quality: Fair
Trust: Neutral
Account's Current Activity: 210
Account's Potential Activity: 607
am i wrong? i should leave account potential blank?

Edit: when i leave potential account blank the result is my account worth as 0.078 BTC.

I'll take a look at how the potential activity is calculated, it looks like it's a little buggy right now. Expect to have the html script updated in a few minutes or so.



Just had a chance to update it. I tested it out and hopefully it works as should this time. Here's the updated code:

Code:
<!-- Created by ColderThanIce on Bitcointalk. UID 429511. -->

<html> 
<head> 
<title>Bitcointalk Account Value Calculator</title> 
<script type="text/javascript">
var quality
var trust
var currentactivity = 0
var potential = 0
var qualitymultiplier = 0
var trustmultiplier = 0
var finalprice = 0
var potentialactivity

function AccountValue(form)
{
currentactivity = form.activity.value
potential = form.potentialactivity.value
trust = form.trustrating.value
quality = form.postquality.value

// Determine the quality value selected, and set the multiplier to the correct amount
switch(quality)
{
case "excellent":
qualitymultiplier = 1.10;
break;
case "good":
qualitymultiplier = 1.025;
break;
case "fair":
qualitymultiplier = 1.00;
break;
case "poor":
qualitymultiplier = 0.975;
break;
case "bad":
qualitymultiplier = 0.95;
break;
}

//Determine the trust level selected, and set the multiplier to the correct amount
switch(trust)
{
case "darkgreen":
trustmultiplier = 1.20;
break;
case "lightgreen":
trustmultiplier = 1.10;
break;
case "neutral":
trustmultiplier = 1.00;
break;
case "negative":
trustmultiplier = 0.15;
break;
}

//Determine the difference between the account's activity and the account's potential activity

if (potential > currentactivity){
potentialactivity = potential - currentactivity
check = true
}

if (potential < currentactivity){
potentialactivity = potential
check = true
}

//Calculate final value of the account and round it to a maximum of eight decimal places
finalprice = ((0.00075 * currentactivity) + (0.000375 * potentialactivity)) * qualitymultiplier * trustmultiplier
finalprice = + finalprice.toFixed(8)

//Let the user know what the final value of the account is
alert("The account you entered is worth " + finalprice + " BTC.")
}
</script> 
<body> 
<form name="information">
<b><u>Post Quality</b></u><br>
<input type="radio" name="postquality" value="excellent">Excellent<br>
<input type="radio" name="postquality" value="good">Good<br>
<input type="radio" name="postquality" value="fair">Fair<br>
<input type="radio" name="postquality" value="poor">Poor<br>
<input type="radio" name="postquality" value="bad">Very Poor<br>


<b><u>Trust Rating</b></u><br>
<input type="radio" name="trustrating" value="darkgreen">Dark Green Positive Trust<br> 
<input type="radio" name="trustrating" value="lightgreen">Light Green Positive Trust<br> 
<input type="radio" name="trustrating" value="neutral">Neutral Trust<br>
<input type="radio" name="trustrating" value="negative">Negative Trust<br>
<br>


Account's Current Activity:
<input type="text" name="activity"><br>

Account's Potential Activity:
<input type="text" name="potentialactivity"><br>
<input type="button" name="button" value="Get Account Value" onClick="AccountValue(this.form)"><br>
</form> 
</form> 
</body> 
</html>

ROLLIN.IO  BITCOIN   DICE   GAME
   ⚁    ⚂    ⚃    ⚄   ⚅   ⚁   ⚂
                                        ███████████████████    
                                      ██                                    ██
                                      ██                                    ██              
                                      ██                                    ██ 
                                      ██                                    ██
                                      ██                                    ██
      ██████████████████                                    ██
      ██                            ██                                    ██
      ██                            ██                                    ██  
      ██                            ██                                    ██
      ██                            ██████████            ██████
      ██                            ██              ██          ██
      ██                            ██                 ██       ██
      ██                            ██                    ██    ██
      ███████        ███████                        ████
                ██     ██
                ██  ██
                ████
             
███████████
S  O  C  I  A  L
C H A T T I N G
                    ██
                  ████
                ██████
              ████████
            ██████████
          ████████████
        ██████████████
      ████████████████
    ██████████████████
  ████████████████████ 
              ████████
              ████████

              ████████

              ████████
██████████████
LEVEL UP SYSTEM
   WITH REWADS
                ██████
              ████████
            ██████████
          ████████████
        ██████████████
    ██████████████████
  ████████████████████
█         ████████████████
█         ████████████████
█         ████████████████
█         ████████████████
   ██████████████████ 
     ████████████████
        █████████████
           ██████████
                █████
██████████████
 FREE BITCOINS
avatar_kiyoshi
Legendary
*
Offline Offline

Activity: 1106
Merit: 1000



View Profile
August 05, 2015, 02:03:22 PM
 #34

@ColderthanIce I already test your new script but, looks like still buggy Huh because when i set with my recent account spesification, the result is my account worth as 0.15 BTC Shocked
BTW good try!
ColderThanIce
Sr. Member
****
Offline Offline

Activity: 373
Merit: 252



View Profile
August 05, 2015, 02:10:14 PM
 #35

@ColderthanIce I already test your new script but, looks like still buggy Huh because when i set with my recent account spesification, the result is my account worth as 0.15 BTC Shocked
BTW good try!
What are you inputting as your potential activity? I just calculated your account value manually (according to the OP's algorithm) and I received a similar account value, using an activity of 210, 0 potential activity, good post quality and neutral trust.

ROLLIN.IO  BITCOIN   DICE   GAME
   ⚁    ⚂    ⚃    ⚄   ⚅   ⚁   ⚂
                                        ███████████████████    
                                      ██                                    ██
                                      ██                                    ██              
                                      ██                                    ██ 
                                      ██                                    ██
                                      ██                                    ██
      ██████████████████                                    ██
      ██                            ██                                    ██
      ██                            ██                                    ██  
      ██                            ██                                    ██
      ██                            ██████████            ██████
      ██                            ██              ██          ██
      ██                            ██                 ██       ██
      ██                            ██                    ██    ██
      ███████        ███████                        ████
                ██     ██
                ██  ██
                ████
             
███████████
S  O  C  I  A  L
C H A T T I N G
                    ██
                  ████
                ██████
              ████████
            ██████████
          ████████████
        ██████████████
      ████████████████
    ██████████████████
  ████████████████████ 
              ████████
              ████████

              ████████

              ████████
██████████████
LEVEL UP SYSTEM
   WITH REWADS
                ██████
              ████████
            ██████████
          ████████████
        ██████████████
    ██████████████████
  ████████████████████
█         ████████████████
█         ████████████████
█         ████████████████
█         ████████████████
   ██████████████████ 
     ████████████████
        █████████████
           ██████████
                █████
██████████████
 FREE BITCOINS
DaddyMonsi
Legendary
*
Offline Offline

Activity: 1344
Merit: 1006


View Profile WWW
August 05, 2015, 02:33:02 PM
 #36

how do you compute the value for Potential Activity?
our account only shows Posts and Activity
el kaka22
Legendary
*
Offline Offline

Activity: 3500
Merit: 1162


www.Crypto.Games: Multiple coins, multiple games


View Profile
August 05, 2015, 02:58:03 PM
 #37

how do you compute the value for Potential Activity?
our account only shows Posts and Activity


I have made a bot to calculate potential activity.
You can check demo at:
http://www.satoshiquiz.com/bitcointalk/getactivity.php

Limit:
Only accounts with max 100 posts will work in demo mode.
Where is the Full mode? Can you make it, or it is at somewhere?
-snip

I tried using that HTML code
what do you put in accounts potential activity?
I left it blank and selected
Post Activity = fair
Trust Rating = neutral
Accounts current activity = 84
Potential Activity = Huh

Result is = 0.0315BTC


I set:
Post Quality: Fair
Trust: Neutral
Account's Current Activity: 210
Account's Potential Activity: 607
am i wrong? i should leave account potential blank?

Edit: when i leave potential account blank the result is my account worth as 0.078 BTC.
BTW your account don't have potential activity. Your potential activity is same as your current activity, i.e. 210.

█████████████████████████
███████▄▄▀▀███▀▀▄▄███████
████████▄███▄████████
█████▄▄█▀▀███▀▀█▄▄█████
████▀▀██▀██████▀██▀▀████
████▄█████████████▄████
███████▀███████▀███████
████▀█████████████▀████
████▄▄██▄████▄██▄▄████
█████▀▀███▀▄████▀▀█████
████████▀███▀████████
███████▀▀▄▄███▄▄▀▀███████
█████████████████████████
.
 CRYPTOGAMES 
.
 Catch the winning spirit! 
█▄░▀███▌░▄
███▄░▀█░▐██▄
▀▀▀▀▀░░░▀▀▀▀▀
████▌░▐█████▀
████░░█████
███▌░▐███▀
███░░███
██▌░▐█▀
PROGRESSIVE
      JACKPOT      
██░░▄▄
▀▀░░████▄
▄▄▄▄██▀░░▄▄
░░░▀▀█░░▀██▄
███▄░░▀▄░█▀▀
█████░░█░░▄▄█
█████░░██████
█████░░█░░▀▀█
LOW HOUSE
         EDGE         
██▄
███░░░░░░░▄▄
█▀░░░░░░░████
█▄░░░░░░░░█▀
██▄░░░░░░▄█
███▄▄░░▄██▌
██████████
█████████▌
PREMIUM VIP
 MEMBERSHIP 
DICE   ROULETTE   BLACKJACK   KENO   MINESWEEPER   VIDEO POKER   PLINKO   SLOT   LOTTERY
xuan87
Legendary
*
Offline Offline

Activity: 1666
Merit: 1001



View Profile
August 05, 2015, 04:53:09 PM
 #38

Very nice project indeed.
Since coding is out of my league, How do I use your code ? How's worth my account ?

Code:
case "excellent":
qualitymultiplier = 1.10;
break;
case "good":
qualitymultiplier = 1.025;
break;
case "fair":
qualitymultiplier = 1.00;
break;
case "poor":
qualitymultiplier = 0.975;
break;
case "bad":
qualitymultiplier = 0.95;
break;

how can I measure the exact result to determine " execellent" , "good" , etc ?
By quality ? By quantity ?


░░░░░░░░░░░░░░░███████████████░░░░░░░░░░
░░░░░░░░░░░░██████████████████████░░░░░░
░░░░░░░░░░░█████████████████████████░░░░
░░░░░░░░░█████████░░░░░░░░░░░████████░░░
░░░░░░░░███████░░░░░░░░░░░░░░░░███████░░
░░░░░░░███████░░░░░░░░░░░░░░░░░░░█████░░
░░░░░░░███████░░░░░░░░░░░░░█████░██████░
░░░░░░░██████░░░░░█░░░░░████████░██████░
░░░░░░░███████░░░███░░░████░░███░██████░
░░░░░░░███████░░██░██░████░░███░░█████░░
░░░░░░░░██████░░██░░█░███░░███░░██████░░
░░░░░░░░░███████░██░█░█░░░███░░██████░░░
░░░░░░░░░░░██████░███░░░███░░░█████░░░░░
░░░░░░░░░██░░████░░░░░░██░░░██████░░░░░░
░░░░░░░░████░░░░░██████░░░█████░░░░░░░░░
░░░░░░░░███████░░░░░░░░░███░░░░░░░░░░░░░
░░░░░░░░░░░█████████████░░░░░░░░░░░░░░░░
░░░░░░░░███░░░█████░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░██████░░░███░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░░░░░░░
▂▂ ▃▃ ▅ ▆ ▇ █ TeraWATT █ ▇ ▆ ▅ ▃▃ ▂▂
Global LED Adoption Through Blockchain Technology
≒≒≒≒≒≒≒≒≒『ICO IS LIVE』≒≒≒≒≒≒≒≒≒
WEBSITE』『WHITEPAPER
≒≒≒≒≒≒≒≒≒≒≒≒≒≒≒≒≒≒≒≒≒
TWITTER』『TELEGRAM
achow101 (OP)
Staff
Legendary
*
Offline Offline

Activity: 3374
Merit: 6535


Just writing some code


View Profile WWW
August 05, 2015, 05:05:33 PM
 #39

Very nice project indeed.
Since coding is out of my league, How do I use your code ? How's worth my account ?

Code:
case "excellent":
qualitymultiplier = 1.10;
break;
case "good":
qualitymultiplier = 1.025;
break;
case "fair":
qualitymultiplier = 1.00;
break;
case "poor":
qualitymultiplier = 0.975;
break;
case "bad":
qualitymultiplier = 0.95;
break;

how can I measure the exact result to determine " execellent" , "good" , etc ?
By quality ? By quantity ?
To use the script that ColderThanIce helpfully posted while I work on the actual thing, you copy the text to notepad and save it as an html file. Then open up the file in a browser and fill out the form.

My website (when it is done) will not require that you fill out the form, just the uid. It will pull all of the information from Bitcointalk for you so you don't have to do it yourself.

ColderThanIce
Sr. Member
****
Offline Offline

Activity: 373
Merit: 252



View Profile
August 05, 2015, 06:34:21 PM
 #40

Very nice project indeed.
Since coding is out of my league, How do I use your code ? How's worth my account ?
how can I measure the exact result to determine " execellent" , "good" , etc ?
By quality ? By quantity ?
I estimate that your account is worth about 0.31 BTC, according to knightdk's algorithm. That's probably a little above current market prices for Senior accounts though.

As for post quality, I'd rate your's as fair. I'd consider an excellent post quality to be from someone who often answers technical questions, and gives thorough, accurate responses. I'd probably rate my own post quality as good, just as an example. It's definitely more quality based than quantity.

ROLLIN.IO  BITCOIN   DICE   GAME
   ⚁    ⚂    ⚃    ⚄   ⚅   ⚁   ⚂
                                        ███████████████████    
                                      ██                                    ██
                                      ██                                    ██              
                                      ██                                    ██ 
                                      ██                                    ██
                                      ██                                    ██
      ██████████████████                                    ██
      ██                            ██                                    ██
      ██                            ██                                    ██  
      ██                            ██                                    ██
      ██                            ██████████            ██████
      ██                            ██              ██          ██
      ██                            ██                 ██       ██
      ██                            ██                    ██    ██
      ███████        ███████                        ████
                ██     ██
                ██  ██
                ████
             
███████████
S  O  C  I  A  L
C H A T T I N G
                    ██
                  ████
                ██████
              ████████
            ██████████
          ████████████
        ██████████████
      ████████████████
    ██████████████████
  ████████████████████ 
              ████████
              ████████

              ████████

              ████████
██████████████
LEVEL UP SYSTEM
   WITH REWADS
                ██████
              ████████
            ██████████
          ████████████
        ██████████████
    ██████████████████
  ████████████████████
█         ████████████████
█         ████████████████
█         ████████████████
█         ████████████████
   ██████████████████ 
     ████████████████
        █████████████
           ██████████
                █████
██████████████
 FREE BITCOINS
Pages: « 1 [2] 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 ... 56 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!