vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Add-On Releases - Stock Trader for vBulletin (https://vborg.vbsupport.ru/showthread.php?t=135084)

sandt38 03-12-2008 04:08 PM

Maybe this should be listed as "unsupported". My board is still broke.

Mys 03-12-2008 10:30 PM

Quote:

Originally Posted by sandt38 (Post 1463110)
Maybe this should be listed as "unsupported". My board is still broke.

Ditto ~

sandt38 03-13-2008 02:26 AM

He isn't supporting it on his site apparently either.

Maybe if we post it enough HERE he will at least respond.

ArchangelX 03-17-2008 06:52 PM

It's got to be something that changed in Yahoo, then...does anyone know how to access or where they get their feeds?

ProAzn 03-19-2008 07:28 PM

same error here. this happened right after the markets plunged. hmm, any relation?

stamos2003 03-20-2008 10:00 AM

you guys have just to change the new yahoo url for the feed, the new one is:
http://download.finance.yahoo.com/d/quotes.csv

change this in the file class_stocktrader.php

the other problem is, that the stock overview quotes only one stock right, I guess this is some kind of misplaced variable in the code.

kylek 03-20-2008 05:51 PM

Quote:

Originally Posted by stamos2003 (Post 1469501)
you guys have just to change the new yahoo url for the feed, the new one is:
http://download.finance.yahoo.com/d/quotes.csv

change this in the file class_stocktrader.php

the other problem is, that the stock overview quotes only one stock right, I guess this is some kind of misplaced variable in the code.

That URL is already there in class_stocktrader.php

stamos2003 03-21-2008 07:15 AM

no, the existant url is:

var $service_url = 'http://finance.yahoo.com/d/quotes.csv';

there is a "download" in front

kylek 03-21-2008 09:12 AM

Thank you many times over stamos2003 for the right url!!!

You were right, I was blind, didn't see the change in the link. Just switched it and everything is back to normal and working like it did before.

Thanks again!!:up:

Quantnet 03-21-2008 08:55 PM

Thanks stamos,
After I changed it and rerun the cron job, it still shows

Warning: Division by zero in /vbtrade.php on line 112

And some of the profile still has () in the change column..Is there anyway to fix the warning and refresh all the accounts ?

ArchangelX 03-24-2008 01:17 PM

*sigh*

Same here... http://download.finance.yahoo.com/d/quotes.csv simply doesn't change anything. :(

sandt38 03-25-2008 07:56 PM

I attempted the same thing with no change in results. There is a variable missing in the string, but I can't figure it out. In searching google for the url I found it will work when you add ticker symbols to it... But how do you add the variable, which must be a part of the program?

ProAzn 03-28-2008 08:53 PM

Is there no more support for this mod? No one has a new file/code to correct the issue??

Sigh.. :(

kylek 03-29-2008 04:45 AM

I did change the link that Stamos2003 provided and it works fine, its been running since March 21 and allows us to get quotes, buy, and sell the stock, shows stock prices, etc.

Stuff we did for it:
1 - reupload the stock trader files,
2 - import the product-stocktrader.xml file and selected overwrite
3 - checked the cron, changed it to run once every hour
4 - changed the url for the feed to the one Stamos2003 provided.

After this its been working fine.

rungok 03-29-2008 11:27 AM

*deleted*

Quantnet 03-29-2008 01:57 PM

kylek
I did what you did and it didn't help. it just wipe out everything and still the same error

ArchangelX 03-31-2008 06:07 AM

Damn. Tried the same thing...no dice. This sucks.

romanticyao 03-31-2008 02:07 PM

Quote:

Originally Posted by Junkie (Post 1395956)
My 'Cash on Hand' at the moment displays as 42.7000000000007.

I use vBCredits as my money system and have the number of decimal places set to zero. Prior to the above display of cash on hand, it displayed an amount with one digit to the right of the decimal. Is there a way to display the cash on hand with no digits to the right of the decimal?


open up vbtrade.php and change

PHP Code:

$cashonhand $vbulletin->userinfo[$moneyrow]; 

to

PHP Code:

$cashonhand round($vbulletin->userinfo[$moneyrow],2); 

This will only show 42.70 . you can change 2 to 0 if you wish to show 42 only.

Quantnet 04-04-2008 12:23 AM

Anyone got any feedback from the author ?

rungok 04-04-2008 07:20 PM

My ISP har disabled the fopen-function and says that I should rewrite the code to use curl instead. Can anyone help me with this modifications?

powerful_rogue 04-05-2008 10:22 AM

Cant seem to get this to work with vb 3.7.0 RC1

Comes up witht he following error at the top of the page:

Quote:

Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of togglealt(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /mnt/web3/33/26/51532726/htdocs/vbtest/vbtrade.php on line 323

Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of togglealt(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /vbtest/vbtrade.php on line 326

Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of togglealt(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /vbtest/vbtrade.php on line 329

Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of togglealt(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in vbtest/vbtrade.php on line 332

Kalina 04-05-2008 12:41 PM

It's not for version 3.7, it's 3.6.

Mys 04-05-2008 04:54 PM

Quote:

Originally Posted by Quantnet.org (Post 1482433)
Anyone got any feedback from the author ?

I wish...:( I'm about to trash it since it does not work. Too bad, my members liked the stock market challenges we set up when it worked.

powerful_rogue 04-05-2008 08:52 PM

Quote:

Originally Posted by Kalina (Post 1483532)
It's not for version 3.7, it's 3.6.

I know, but if you dont try then you dont know.

Im simply posting to save anyone else with 3.7 the hassle of installing to see if it works.

ProAzn 04-06-2008 07:28 PM

We disabled ours until a new updated file can be done. Says this hack is supported but the developer seems to have left. :(

joopster 04-07-2008 01:20 PM

I have read through most of this thread, I have one stock SIRI which shows change updates etc. But any other stock I buy and put in the hack displays () under change and never updates. I set the cron to run once and hr.

I also updated the feed.

Any suggestions?

odeezie 04-07-2008 08:03 PM

The first page says:

Official Support
This thread until Feb 1st
After Feb 1st: http://www.anothermessageboard.com/f...splay.php?f=35

However, it is not supported there either. Also it says that version 0.9.9 is available but when i downloaded the zip file, it shows up as 0.9.8. This is a cool hack and I wish I could implement it, but it doesnt look like support is going to happen. :(

ProAzn 04-13-2008 03:58 AM

Appears this mod is done. No solution, developer is gone. Might as well uninstall it. :(

Gimmick 04-22-2008 11:56 AM

This sucks, anyone know for a stock trader mod for 3.6.8 ?

odeezie 04-23-2008 04:32 PM

Quote:

Originally Posted by ProAzn (Post 1489499)
Appears this mod is done. No solution, developer is gone. Might as well uninstall it. :(

Yes, I did. I will just keep my eye out for another. :D

FiMeTi 05-16-2008 09:22 AM

So there is noone who finally made this work for vBB 3.7.0?

I´d love to install this onto vBB 3.7.0 and also would like to donate some cash for a working version.

PLEASE try to fixx this!!

BlitzSports 05-17-2008 09:16 AM

Contacted the developer at his site and he just played games. We set up a time to fix my issues and when the time came he just ignored me, even after sending several pm's to him. Good thing about yahoo messenger is that you see when the user comes on/off and I always sent the pms when he 1st came online.

Anyways several days passed and he finally pm's me back telling me that he has more important things to do rather than some message board. So I tell him he should have never set up a time-line with me then and that was the end of it, well at least I thought.

I uninstalled his hack and then he had the nerve to come back a week later and pm me via yahoo saying: "Hey Numnuts... I have finished school so now I can look at the hack". He obviously likes to play head games and has problems with concentrating with his responsibilities he takes on.

Because of my experience with him I will NEVER install another one of his hacks again and I strongly warn everybody else with the "Buyer Beware" saying.

FiMeTi 05-19-2008 08:50 PM

Hey guys .. check this post!

https://vborg.vbsupport.ru/showthread.php?t=179848


cheers

RedeemedWarrior 06-19-2008 04:25 PM

I have it running on my testVB, thats a 3.7x, over the weekend i'm running a few tests then going live (main forum) with it, I can link to the demo then if anyone wishes

edit it works great with Vbcredits and 3.7x

dsav90 06-26-2008 01:56 AM

Quote:

Originally Posted by RedeemedWarrior (Post 1553724)
I have it running on my testVB, thats a 3.7x, over the weekend i'm running a few tests then going live (main forum) with it, I can link to the demo then if anyone wishes

edit it works great with Vbcredits and 3.7x

Definatly!!!!

curse-1 08-08-2008 08:47 PM

Is it possible these beautiful Hack, with this Hack HERE to combine. If no, that could try someone? pls pls pls

nsusa 08-09-2008 01:00 AM

Quote:

Originally Posted by curse-1 (Post 1594302)
Is it possible these beautiful Hack, with this Hack HERE to combine. If no, that could try someone? pls pls pls

THis hack is definitely dead. I wonder why mods still leave it open?!

dt_truck11 08-11-2008 06:55 PM

ya this mod is dead. i tried the fix that RedeemedWarrior sent me but it didnt work for me:(

RedeemedWarrior 09-02-2008 06:18 AM

Was working right up till 3.7.3 for me, yet members grew bored of it, so its meeting the cull today

edytwinky 10-08-2008 09:50 PM

Is there anything similar to this that is working?


All times are GMT. The time now is 07:38 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01946 seconds
  • Memory Usage 1,825KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_php_printable
  • (9)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete