Omnimaga

Calculator Community => Other Calc-Related Projects and Ideas => Casio PRIZM => Topic started by: flyingfisch on September 25, 2011, 09:40:47 pm

Title: Stock Craze: a casio game
Post by: flyingfisch on September 25, 2011, 09:40:47 pm
I am making a stock market game in BASIC for casio calculators.

(http://userbars.removedfromgame.com/ub/flyingfisch312.png)
Put this in your sig if you want your username included. Read this post: http://ourl.ca/13209/247699
Code: [Select]
[url=http://ourl.ca/13209][img]http://userbars.removedfromgame.com/ub/flyingfisch312.png[/img][/url]
Post suggestions below, please.

EDIT 9/29/2011 22:30 EST:

Usernames to be included (0 more spots):

FFSH: flyingfisch
YJNC: YeongJiN_Cool
JUJU: Juju
BOOT: Boot2490
FNLE: FinaleTI
TQWH: TuriqWalrus Holdings
DBDR: DualBuilder
ZLDA: ZeldaKing
MACH: m1ac4 Holdings
PMAN: pianoman
BLFC: Deep Thought
ANOR: Annoying Orange
TGME: The Game >:-)
TTYY: Totoyo
EYRN: Eiyeron
PSPD: Parser Padwan
SPYR: Spyro543
OMNI: Omnimaga, duh!
CASC: CasioCalc.org
PLCS: Planete-Casio.com or planet-casio.fr


EDIT 9/29/2011: I am currently taking a course at Khan Academy for finance to make this THE best on-calc stock market game ever!

EDIT 9/29/2011 18:45 EST: Main engine coded. will post code soon!

EDIT 9/30/2011

I am releasing the code. It is still being optimized and debugged and some is pseudo-code.


Spoiler For matrix setup:
Mat A = stocks
Top row=Current price
2 and 3 rows=last two prices
row 4=how much you own

Mat B = avg of all stocks (market)
row 1=avg
row 2=prev avg

Mat C =Personal data (Highscores, cash on hand)
row 1=Cash on hand
rows 2-4=High Scores
Spoiler For Code:
Prog "STOCK"
Code: [Select]
//Splash screen goes here
Menu "Stock Craze","Play",1,"Help",2,"Credits",3
Lbl 1
Prog "ENG"
Lbl 2
"help goes here"
Lbl 3
"Credits"
prog "ENG"
Code: [Select]
//Setup
"FFSHBOOTDBLD..." -> Str 1 //puts all the names of the stocks in a string. must have 20 names, no more, no less.

[[100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100][100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100][0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,][0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,]] -> Mat A

[[0][0]] -> Mat B

[[1000][0][0][0]] -> Mat C

While A = 1
For 1 -> J to 20
RandInt(1,10) -> S
Rand# -> R

Mat A[2,J] < Mat A[3,J] => P-1 -> P
Mat A[2,J] > Mat A[3,J] => P+1 -> P

R > P*0.05+0.50 => 1 -> D
R < P*0.05+0.50 => -1 -> D
R = P*0.05+0.50 => 0 -> D

Rand# -> r  //the r used here is the one that stand for radians, or whatever.

S=1 => r*10 -> theta
S<3 => r*5 -> theta
S<6 => r*2 -> theta
S<10 => r -> theta

//assigns the new price
D=1 => Mat A[2,J]+theta -> Mat A[1,J]
D=1 => Mat A[2,J]-theta -> Mat A[1,J]
D=1 => Mat A[2,J] -> Mat A[1,J]

For 1 -> H to 20
Mat A[1,H]+P -> P
//end of "for" loop
Mat B[1,1] -> Mat B[2,1]
P/20 -> Mat B[1,1]


//end of "for" loop
Next

Prog "Disp"

For 1 -> I to 20
//If exit
E=1 => Break
//else move each row down one
Mat A[2,I] -> Mat A[3,I]
Mat A[1,I] -> Mat A[2,I]
//end "for" loop
Next
//End while loop
WhileEnd

//scoring system goes here
//Thanks for playing message goes here
Prog "DISP"
Code: [Select]
Lbl 0
1 -> B
//Displays the UI
//Begin pseudo-code
Display "Stock craze" in upper left corner of screen
Display Mat C[2,1] on the upper right side of the screen
Display "Day" to left of Mat C[2,1]
Display "Average" just below "stock craze"
Display Mat B[1,1] at left
Display a $ sign and amount of money (Mat C[1,1]) at bottom


//end pseudo-code

1->J
1->K //#'s for K and J will be determined at a later date, I do not know what they will be right now :S
0 -> L
B*20 -> C

For C -> I to C+40 step 4
StrMid(Str1,I,I+4) -> Str2 //extracts the name of stock from str1
Text K,I,Str2

//diplay names of first 10 stocks
J+15 -> J
If L=0
then If J>58
then 126/2 -> K
IfEnd
IfEnd
//end "for" loop
Next

//Displays prices of first 10 stocks
B*10 -> C
0 -> L
1 -> J
6 -> K

For C -> I to C+10
Text K,J,Mat A[1,I]
J+15 -> J
If L=0
then If J>58
then (126/2)+6 -> K
IfEnd
IfEnd
//end "for" loop
Next

//"for" loop is used as a timer here
For 1 -> I to 1000
Getkey -> G

If B=2 //if on page 2 (B is the page number)
then If G=79 //79 = F1 key
then 1 -> B //Brings us to page 1
Goto 0 //go back to top and display the next page
IfEnd
IfEnd

If B=1
then If G=29 //29 = F6 Key
then 2 -> B
Goto 0
IfEnd
IfEnd

If G=78 //78=Shift Key
then 1 -> A //A is used to determine Bye or sell in prog "trade" (1 is buy, 2 is sell)
Prog "TRADE"
IfEnd

If G=77 //77=Alpha Key
then 2 -> A
Prog "TRADE"
IfEnd

Next
prog "TRADE"
Code: [Select]
menu "STOCKS","STK1",... //list all stocks

Lbl 1
1 -> Z
Goto X

Lbl 2
2 -> Z
Goto X

...

Lbl X
A=2 => Goto Z
If A=1
then ClrText
Lbl Y
"How much do you want to buy"? -> A

A*Mat A[1,Z] > Mat C[1,1] => Goto Y
Mat C[1,1]-(A*Mat A[1,Z]) -> Mat C[1,1] //subtracts cost from cash on hand
A+Mat A[4,Z] -> Mat A[4,Z] //records how much stock you have, now
Goto 0

IfEnd

Lbl Z
If A=2
then ClrText
Locate 1,1,"You have this amount of stock:"
Locate 2,1,Mat A[4,Z]
//little black triangle goes here to pause until user presses EXE

Lbl W
Clrtext
"how much do you want to sell"? -> A
A > Mat A[4,Z] => Goto W
Mat C[1,1]+(A*Mat A[1,Z]) -> Mat C[1,1] //adds the amount sold to your total cash
Mat A[4,Z]-A -> Mat A[4,Z]

IfEnd

Lbl 0

If you don't uderstand something in the code up there, post and I will try to enlighten you. ;)

(if you don't know why this has been deleted, see this post: http://ourl.ca/13209/247699
Spoiler For deleted:
EDIT 9/27/2011:

Markets to be included:

NASDAQ
NYSE

Indexes to be included:

DOW JONES
S&P500

Companies to be included (post if you want more!):

NASDAQ:
YHOO: Yahoo
GOOG: Google
AAPL: Apple
DELL: Dell
MSFT: Microsoft

NYSE:
TXN: TI
IBM: IBM
GM: GM


Title: Re: Stock Craze: a casio game
Post by: mrmprog on September 25, 2011, 09:43:52 pm
I like the userbar, it looks good. Will this be real time?
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 25, 2011, 09:45:19 pm
Real time?
Title: Re: Stock Craze: a casio game
Post by: mrmprog on September 25, 2011, 10:31:40 pm
As in, the values of the stocks will change every so many minutes, instead of having a "next day" button.
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 26, 2011, 04:52:17 pm
Yes
Title: Re: Stock Craze: a casio game
Post by: mrmprog on September 26, 2011, 04:57:07 pm
Good. The first game I ever made was a stock game in basic. It was horrible. I hope you game turns out well. These types of games have always interested me. How closely will the stocks be connected? Like if you buy a huge amount of one, will prices change on others?
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 26, 2011, 05:02:41 pm
I have always  liked stock games, too. Yes, buying a large amount of stock will affect the others. Also, I will try to get all the big stocks up there, as well as bonds. I will have to do a bt of research because I'm not extremely well versed in stocks. :P There will also be some real life scenarios (bankruptcy,swindling, etc.), so stay tuned. ;)
Title: Re: Stock Craze: a casio game
Post by: BalancedFury on September 26, 2011, 06:33:04 pm
Our school is just starting to play the stock market game... lol
*High Pitched voice* Coincidence~~
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 27, 2011, 10:55:19 am
Alright, guys. What are some big stocks that you would like to see in this game?
Title: Re: Stock Craze: a casio game
Post by: boot2490 on September 27, 2011, 10:59:52 am
GOOG
NASDAQ
DOW JONES
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 27, 2011, 11:16:27 am
Added
Title: Re: Stock Craze: a casio game
Post by: boot2490 on September 27, 2011, 05:18:32 pm
Can I make a TI BASIC version of this? I like the idea.
Oh, and you should have two modes:
Arcade mode, where stocks update real time and you have to stay in the black for as long as possible, and
Casual mode, with a "Next day" button, and it is less intense and you don't lose, just attend to it.
Two different games, but one game. Like the idea?
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 27, 2011, 06:40:47 pm
Arcade and casual is a good idea. and yes, by all means program it for the TI calcs!
Title: Re: Stock Craze: a casio game
Post by: Ashbad on September 27, 2011, 07:27:36 pm
GOOG
NASDAQ
DOW JONES

S&P500
ASBAD
Title: Re: Stock Craze: a casio game
Post by: BalancedFury on September 27, 2011, 07:30:12 pm
Add NYSE
Title: Re: Stock Craze: a casio game
Post by: mrmprog on September 27, 2011, 10:56:19 pm
I can't wait to see this! Would it be possible to add things like natural disaters that would change the values of specific stocks?
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 27, 2011, 11:14:11 pm
I was thinking of including that very thing.
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 28, 2011, 03:09:43 pm
I
GOOG
NASDAQ
DOW JONES

S&P500
ASBAD

What is S&P500?

And I think I can guess ASBAD lol. I think maybe I'll make a username edition.
Add NYSE

I have NYSE now.
Title: Re: Stock Craze: a casio game
Post by: Ashbad on September 28, 2011, 03:30:12 pm
S&P500 == One of the top 3 stock indices the market follows, composed of High-Tech industrial or commodity producing companies; usually the index that sways the most during the trading period.
Title: Re: Stock Craze: a casio game
Post by: m1ac4 on September 28, 2011, 03:33:46 pm
I don't have any suggestions for what stocks or indexes to add (for now) but I would like to say that I am looking forward to trying this when it is released.
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 28, 2011, 03:54:36 pm
S&P500 has been added
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 28, 2011, 05:29:22 pm
My dad is a financial analyst, and he tells me that you cant buy stocks from indexes such as DOW JONES. could someone explain this further? ???

EDIT: Never mind.
Title: Re: Stock Craze: a casio game
Post by: BalancedFury on September 28, 2011, 07:18:08 pm
I
GOOG
NASDAQ
DOW JONES

S&P500
ASBAD

What is S&P500?

And I think I can guess ASBAD lol. I think maybe I'll make a username edition.
Add NYSE

I have NYSE now.
There is something else I think you should add; Add OmNom lol
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 28, 2011, 07:19:30 pm
Maybe I will if I make a username version.
Title: Re: Stock Craze: a casio game
Post by: BalancedFury on September 28, 2011, 07:21:08 pm
Username version? o.O
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 28, 2011, 07:22:40 pm
Yeah. Instead of real stock names, users who support this project by putting the userbar I made in their sig will have their names in the game. Just an idea...
Title: Re: Stock Craze: a casio game
Post by: BalancedFury on September 28, 2011, 07:25:09 pm
Oh...
Also, how much money will you start with, and will the stocks be the exact price as the real stock market?
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 28, 2011, 08:05:09 pm
We couldn't make the stocks the same price as on the real market because the prices are constantly changing. I think $100 is a good amount to start with, and I think the scoring system will be however much money more than the initial amount you have. Or we could make the game endless, where it saves your progress when you exit.
Title: Re: Stock Craze: a casio game
Post by: BalancedFury on September 28, 2011, 08:15:11 pm
Ahhh... the endless will be boring, so you should make it 10 weeks just like the real Stock Market Game..
Title: Re: Stock Craze: a casio game
Post by: NecroBumpist on September 28, 2011, 09:32:57 pm
Oooh, me likey.
I'm tempted to try this in Lua!

Not sure if I'll try to keep mine similar to yours (if you post more detail :)) or if I'll go off and make my own UI and other st00f.

Spoiler For realization:
Holy crap, this is the first time I'll be programming in like 5 weeks. Freaking school, taking up all my time  :'(
Title: Re: Stock Craze: a casio game
Post by: chattahippie on September 28, 2011, 10:40:17 pm
Add TXN - Texas Instruments :D  (It's in the NYSE)
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 29, 2011, 09:22:34 am
TXN Added
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 29, 2011, 11:40:00 am
check the first post, its been edited ;)

Oooh, me likey.
I'm tempted to try this in Lua!

Not sure if I'll try to keep mine similar to yours (if you post more detail :)) or if I'll go off and make my own UI and other st00f.

Spoiler For realization:
Holy crap, this is the first time I'll be programming in like 5 weeks. Freaking school, taking up all my time  :'(

I'm trying to post all progress. Will you be doing this in TI Lua? For now all I'm doing is learning about the stock market. Also, I think boot is doing this in TI BASIC.
Title: Re: Stock Craze: a casio game
Post by: Yeong on September 29, 2011, 01:01:46 pm
add APPLE and PEAR :P
(PEAR is just a joke)
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 29, 2011, 01:05:10 pm
AAPL is apple inc. ;)
Title: Re: Stock Craze: a casio game
Post by: Yeong on September 29, 2011, 03:34:05 pm
oh I didn't see that XP
but still include pear XP
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 29, 2011, 03:47:57 pm
what is PEAR?
Title: Re: Stock Craze: a casio game
Post by: Yeong on September 29, 2011, 03:49:23 pm
(PEAR is just a joke)
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 29, 2011, 06:44:11 pm
I have the main engine figured out(not coded on-calc, but all written out on paper :P). will post code soon.
Title: Re: Stock Craze: a casio game
Post by: boot2490 on September 29, 2011, 06:45:32 pm
care to share your algorithms for those of us who want to remake it?
Title: Re: Stock Craze: a casio game
Post by: NecroBumpist on September 29, 2011, 07:10:03 pm
I support boot2490's request :)

And yes, I will be doing this specifically for TI-NSpires (though since I am without a CX, I will forgo color)
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 29, 2011, 10:20:56 pm
I will share my algorithms tomorrow or at least before wed. next week.

Also, MAJOR CHANGE:

Since I have discovered that the stock market is almost impossible to emulate accurately, I will go back to the username idea. Post a four letter code for your username and put the userbar in your sig, and you will be included in the game!

The stock market will be as realistic as I can get it (it will even have news -- wars, etc.), but, since I can't get real stock values, it will be a fake market.
Title: Re: Stock Craze: a casio game
Post by: BalancedFury on September 29, 2011, 10:22:49 pm
I sor tof realized that because you can't get on the internet in the calc...
Also, you can't control the downs and ups..
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 29, 2011, 10:27:48 pm
I've got downs and ups figured out, will post algorithm  tomorrow. ;)
Title: Re: Stock Craze: a casio game
Post by: NecroBumpist on September 30, 2011, 12:00:33 am
Welp, I might as well post my plan.

You have 1 year to play, and to make as much money as possible.
You will start out with a compound loan (how about for $10,000) and you will have to repay it before the game is over to win.
Each day will consist of approximately 10 seconds (this makes the game just about an hour long, excluding time spent in dialogue menus).

Instead of taking real stock info I plan to generate a large list of companies with varying properties, such as what sector they are involved in, they're current price, how their company/stock is fairing (steady, rising, falling, spiking, plummeting), and any other shit I can think of.
I think I'll make all this info random, so you can't just play the same strategies over and over.

Then, the fun part.
The market.

Now, since I'll be doing this in Lua, I'll probably have the most power among the different versions, and I plan to spend this power simulating a market. Based on the companies current fairings, numerous 'bots' will trade stocks.
If the bots notice a rise in price, they'll continue buying, sending the price higher, however, I'll have to limit this.
If the bots notice a decline, some might begin to sell (this opens up a new venue for bot personalities (long-term investors vs. short-term)), while other will hold off.
Buy low, sell high, make profit.

As the player, you'll have to navigate this treacherous new market, and not blow all your money.
I'll probably include a tutor for the first few minutes to teach you how to use things, and to show you which stocks would be safe/good starting investments.

Onto the game play.
It will revolve around a GUI which lists stock prices and st00f.
When you want to do something, you'll hit a button, which opens a menu (and pauses game advancement).
From here, you buy, sell, manage your loans, and maybe a few other stock-esque things I'm unsure of (short-trading).

I hope to make the game really interactive, like allowing you to see price graphs, and other cool things.

To me, it sounds interesting, but I want to hear your feedback Omnimaga.
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 30, 2011, 01:23:37 pm
Ok, I have released my algorithm (first post).  I need 20 usernames and a first come, first serve basis, so post if you want your username included in the game, now is your chance to be famous!

I also need suggestions as to improving the engine (prog "ENG") to simulate the real market better. I have it set up so as the market rises, the chance of it coming back down is greater, and as the market comes down, the chance of it going up increase.
Title: Re: Stock Craze: a casio game
Post by: Yeong on September 30, 2011, 03:17:52 pm
YJNC - YeongJiN_Cool
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 30, 2011, 03:25:58 pm
To be included in the game, you must also put this in your signature:

Code: [Select]
[url=http://ourl.ca/13209][img]http://userbars.removedfromgame.com/ub/flyingfisch312.png[/img][/url]
Title: Re: Stock Craze: a casio game
Post by: Yeong on September 30, 2011, 03:31:34 pm
To be included in the game, you must also put this in your signature:

Code: [Select]
[url=http://ourl.ca/13209][img]http://userbars.removedfromgame.com/ub/flyingfisch312.png[/img][/url]
Cheap advertising :P
Title: Re: Stock Craze: a casio game
Post by: Juju on September 30, 2011, 03:36:10 pm
JUJU - Juju, obviously.
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 30, 2011, 03:46:06 pm
Juju's name has been added to the list
Title: Re: Stock Craze: a casio game
Post by: turiqwalrus on September 30, 2011, 03:47:00 pm
TWH = TuriqWalrus Holdings
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 30, 2011, 03:48:47 pm
It needs to be four letters and you have not put the code in your signature :S
Title: Re: Stock Craze: a casio game
Post by: FinaleTI on September 30, 2011, 03:49:48 pm
FNLE - Finale
Title: Re: Stock Craze: a casio game
Post by: boot2490 on September 30, 2011, 03:51:32 pm
BOOT
Obvious...
Title: Re: Stock Craze: a casio game
Post by: turiqwalrus on September 30, 2011, 03:52:38 pm
TQWH, then :P
am I the only active member with a 'Q'?
EDIT: other than quigibo :P
Title: Re: Stock Craze: a casio game
Post by: Yeong on September 30, 2011, 03:53:34 pm
TQWH, then :P
am I the only active member with a 'Q'?
EDIT: other than quigibo :P
Quigibo?
Title: Re: Stock Craze: a casio game
Post by: boot2490 on September 30, 2011, 03:55:14 pm
Maybe I should get crackin' on the TI side of CodeCo software! :D
Can you PM me the code?
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on September 30, 2011, 03:56:48 pm
Its on the first post.
Title: Re: Stock Craze: a casio game
Post by: Yeong on October 01, 2011, 02:17:48 pm
Add Meh Bro...
He can't get on, but he wanted me to type it for me
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on October 01, 2011, 02:18:47 pm
4 letters please.
Title: Re: Stock Craze: a casio game
Post by: Yeong on October 01, 2011, 02:19:54 pm
DBDR
Title: Re: Stock Craze: a casio game
Post by: zeldaking on October 01, 2011, 03:11:23 pm
If you have anymore spots I would like ZLDA - ZeldaKing, I will get that userbar.
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on October 01, 2011, 03:15:20 pm
I have plenty more spots. You and DBDR have been added
Title: Re: Stock Craze: a casio game
Post by: NecroBumpist on October 01, 2011, 06:03:56 pm
flyingfisch, mind if I use the name "Market Maniac" ?

I want to create my own stock/money/market game, separate from yours, but since I thought of this after reading your post I want to know if this is okay with you.
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on October 01, 2011, 09:28:49 pm
Fine by me, necro.
Title: Re: Stock Craze: a casio game
Post by: Deep Toaster on October 02, 2011, 11:50:14 am
What, did I really miss five pages? O.O

This looks like a great idea. Good luck! And here's a tip: How about having a dynamic userbar system specifically for this game, that displays our four-letter code on our bar? I'll make it if you want :)
Title: Re: Stock Craze: a casio game
Post by: m1ac4 on October 03, 2011, 07:32:46 am
MACH - It's close to my username but I need to figure out what it means exactly.
Title: Re: Stock Craze: a casio game
Post by: Yeong on October 03, 2011, 09:10:34 am
I have plenty more spots. You and DBDR have been added
Okee, ill tell my bro
Title: Re: Stock Craze: a casio game
Post by: turiqwalrus on October 03, 2011, 09:17:39 am
MACH - It's close to my username but I need to figure out what it means exactly.
M1AC4 Holdings? :P
Title: Re: Stock Craze: a casio game
Post by: m1ac4 on October 03, 2011, 09:51:29 am
MACH - It's close to my username but I need to figure out what it means exactly.
M1AC4 Holdings? :P
Somehow that never occurred to me.   ;)
Title: Re: Stock Craze: a casio game
Post by: boot2490 on October 03, 2011, 11:23:06 am
How about BRGE for Yeong?
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on October 03, 2011, 01:29:27 pm
What, did I really miss five pages? O.O

This looks like a great idea. Good luck! And here's a tip: How about having a dynamic userbar system specifically for this game, that displays our four-letter code on our bar? I'll make it if you want :)

Yeah, that would be real cool. Would you use an API of some sort?

Also, do you want your username included in the game?
Title: Re: Stock Craze: a casio game
Post by: boot2490 on October 03, 2011, 08:37:55 pm
We could have a competitive real time online version! The omnimaga stock market! Javascript? THAT would be fun. I could help make it!
Title: Re: Stock Craze: a casio game
Post by: pianoman on October 03, 2011, 10:16:50 pm
Could you add me?
PMAN
Title: Re: Stock Craze: a casio game
Post by: Deep Toaster on October 03, 2011, 10:46:13 pm
Ooh, me! BLFC
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on October 04, 2011, 01:37:53 pm
pianoman and deep thought added.

We could have a competitive real time online version! The omnimaga stock market! Javascript? THAT would be fun. I could help make it!

There are competitive online stock market games already: http://www.marketwatch.com/game/

Title: Re: Stock Craze: a casio game
Post by: Yeong on October 04, 2011, 05:11:08 pm
How about BRGE for Yeong?
Nu!
Title: Re: Stock Craze: a casio game
Post by: boot2490 on October 04, 2011, 08:10:56 pm
I'm just poking fun. On the other hand, your current name is too hard to type.
Title: Re: Stock Craze: a casio game
Post by: Yeong on October 04, 2011, 08:11:31 pm
I'm fine with 'Yeong' <_<
Title: Re: Stock Craze: a casio game
Post by: PeonHero on October 04, 2011, 09:55:36 pm
Another suggestion: JUME
Title: Re: Stock Craze: a casio game
Post by: Deep Toaster on October 04, 2011, 10:15:03 pm
I'm fine with 'Yeong' <_<
Has to be in all caps.
Title: Re: Stock Craze: a casio game
Post by: Yeong on October 04, 2011, 10:16:56 pm
I'm fine with 'Yeong' <_<
Has to be in all caps.
I was answering boot's post XP
My 'stock' name is already in this project XD
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on October 05, 2011, 03:19:17 pm
Another suggestion: JUME

For yourself, yeong, what? ???
Title: Re: Stock Craze: a casio game
Post by: DJ Omnimaga on October 05, 2011, 03:53:38 pm
Don't forget to add TSX too :P (Toronto Stock Exchange). After all we got some canadians around here too :P
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on October 05, 2011, 04:08:45 pm
I am not using real stocks or exchanges anymore :P
Title: Re: Stock Craze: a casio game
Post by: boot2490 on October 05, 2011, 07:15:07 pm
Hmm... how about OMNI???
All of our usernames could be under OMNI, like goog is under nasdaq!!!
Title: Re: Stock Craze: a casio game
Post by: pianoman on October 05, 2011, 11:42:13 pm
Hmm... how about OMNI???
All of our usernames could be under OMNI, like goog is under nasdaq!!!
I think a less site-specific idea might be a good idea.
Maybe CALC?
or CALC could be the equivalent of burkshire-hathaway?
Title: Re: Stock Craze: a casio game
Post by: DJ Omnimaga on October 05, 2011, 11:43:31 pm
I am not using real stocks or exchanges anymore :P
Aw ok. Also can they still be 5 letters long? DAGAM seems like a good one. (The Game)
Title: Re: Stock Craze: a casio game
Post by: Darl181 on October 05, 2011, 11:44:40 pm
Aww DJ, I was going to suggest "TGME" but you ninja'd :P
Title: Re: Stock Craze: a casio game
Post by: annoyingcalc on October 07, 2011, 11:18:59 am
add ANOR (me)  ANnoying ORange
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on October 07, 2011, 05:30:03 pm
I am not using real stocks or exchanges anymore :P
Aw ok. Also can they still be 5 letters long? DAGAM seems like a good one. (The Game)

Sorry, only 4 letters (my program depends on that), so I am using TGME. ;)

*ANOR has been added
Title: Re: Stock Craze: a casio game
Post by: BalancedFury on October 07, 2011, 09:16:56 pm
that ^^^sounds like a good plan, but it should be like the real game.
You hav 10 weeks, you start with $100,000 and a loan amount of another $100,000
Since u cant interact with other players, you should make a cpu with an artificial intelligence to go against u.
That's what the real one is like
XD
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on October 11, 2011, 11:37:59 am
Oh, man, did I here AI ??? I really don't wanna do that :"( lol

but, yeah, 10 weeks and $100,000 is a good idea.
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on October 18, 2011, 03:58:25 pm
alright ppl... only 7 spots left!
Title: Re: Stock Craze: a casio game
Post by: Eiyeron on October 18, 2011, 04:18:18 pm
TTYY

(Totoyo, my boss! :p)
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on October 18, 2011, 04:23:41 pm
he's just been added, do you want one for yourself?
Title: Re: Stock Craze: a casio game
Post by: Eiyeron on October 18, 2011, 04:33:50 pm
If you want: EYRN
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on October 18, 2011, 04:45:56 pm
You've been added... dont forget to put the userbar in your sig!
Title: Re: Stock Craze: a casio game
Post by: parserp on October 18, 2011, 05:00:13 pm
Ooh pick me!
PSPD  ParSer PaDwan
Title: Re: Stock Craze: a casio game
Post by: Spyro543 on October 18, 2011, 05:06:53 pm
If there's room add SPYR or S543.
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on October 18, 2011, 05:56:20 pm
parser and spyro have been added.

Come on ppl.. only 3 spots left!
Title: Re: Stock Craze: a casio game
Post by: BalancedFury on October 18, 2011, 09:21:39 pm
Even though it is hard programming, you should at least try to do AI, and get help if u need to.
There are a lot(?) of Casio programmers in Omnimaga, I suppose.
Title: Re: Stock Craze: a casio game
Post by: mrmprog on October 18, 2011, 09:25:22 pm
MRMP, if there are spots left.
Title: Re: Stock Craze: a casio game
Post by: Jonius7 on October 19, 2011, 01:08:13 am
I would like a spot JNIS: Jonius Enterprises
This sounds great! I've played a stock game on casio in the past but this one sounds cool with custom stocks!
PS: I have your userbar on now.
Title: Re: Stock Craze: a casio game
Post by: boot2490 on October 19, 2011, 10:32:54 am
Last one:
OMNI!
And new page.
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on October 19, 2011, 10:38:23 am
you always start new pages, dont you, boot LOL. OK, omni, casiocalc.org, and planete-casio have been added so there are no more spots left. I think its time to program now. :)
Title: Re: Stock Craze: a casio game
Post by: boot2490 on October 19, 2011, 10:40:37 am
GOO!!
*mortal kombat theme plays*
Title: Re: Stock Craze: a casio game
Post by: Jonius7 on October 20, 2011, 09:35:00 am
This'll be quite exciting. I can't wait to play omnimaga/calculator stocks!
Title: Re: Stock Craze: a casio game
Post by: BalancedFury on October 20, 2011, 05:41:46 pm
I do too Jonius, and I also don't see the userbar
When I first read "GOO!" I thought u said GOO instead of GO
Title: Re: Stock Craze: a casio game
Post by: boot2490 on October 20, 2011, 06:00:06 pm
Lol
GO!!!
Title: Re: Stock Craze: a casio game
Post by: BalancedFury on October 20, 2011, 06:02:22 pm
:P
Go Thug!
Use the move Thug Aim!! :D
Title: Re: Stock Craze: a casio game
Post by: boot2490 on October 20, 2011, 09:27:32 pm
I am looking forward to this much!
I will try to think of some suggestions.
Title: Re: Stock Craze: a casio game
Post by: Eiyeron on October 27, 2011, 05:31:05 pm
Correct planete-casio.org by .fr or .com, please!
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on October 27, 2011, 05:43:05 pm
Oh, OK, sorry. :/

I am going to do this in LuaFX, by the way. 8)
Title: Re: Stock Craze: a casio game
Post by: Jonius7 on November 20, 2011, 02:30:09 pm
So, any progress?
Title: Re: Stock Craze: a casio game
Post by: DJ Omnimaga on November 20, 2011, 02:48:05 pm
Doesn't seem like so. Sadly Boot2940 isn't much active anymore :(
Title: Re: Stock Craze: a casio game
Post by: Yeong on November 20, 2011, 02:52:13 pm
I thought flyingfisch was making this game? ???
Title: Re: Stock Craze: a casio game
Post by: BalancedFury on November 20, 2011, 03:37:00 pm
Doesn't seem like so. Sadly Boot2940 isn't much active anymore :(
Em hem... boot2490 :P
I thought flyingfisch was making this game? ???
Me too? ???
Title: Re: Stock Craze: a casio game
Post by: Jonius7 on November 24, 2011, 02:30:59 pm
I thought flyingfisch was making this game? ???
Yes it's flyingfisch he hasn't logged in since 20 November
and boot2490 was on two days ago. However he may not have posted
EDIT: He has i guess. http://ourl.ca/14179/265085;topicseen#new
Title: Re: Stock Craze: a casio game
Post by: boot2490 on November 24, 2011, 05:51:40 pm
Doesn't seem like so. Sadly Boot2940 isn't much active anymore :(
Or am I?
And he is coding this one.
However, I am planning to do some coding soon, but this is not one of my priorities.
Title: Re: Stock Craze: a casio game
Post by: Jonius7 on November 24, 2011, 05:53:01 pm
I know boot2490.
And this was a very long time ago, yesterday:
http://ourl.ca/14179/265085;topicseen#new
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on November 29, 2011, 10:45:29 am
hi guys. Thanks for whoever has put this in the casio prizm projects forum. I am currently working on this project, but I am trying to figure out some LuaFX stuff, so bear with me. :)
Title: Re: Stock Craze: a casio game
Post by: BalancedFury on November 29, 2011, 06:24:48 pm
Ok ;)
Title: Re: Stock Craze: a casio game
Post by: Jonius7 on March 27, 2012, 07:58:46 am
Wow I wonder how this is going, since I just noticed this topic here: http://ourl.ca/15659
Good to see you back flyingfisch!
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on April 03, 2012, 09:11:20 pm
After 6 months of procratination, I finally have a beta version!

Download: http://www.casiocalc.org/to/fsdisplay.php?cat2disp=FS.FX.Prizm.casm

 In-game instructions included.

 At splash screen, press exe. At the main menu, press f1 to play. At the next screen, choose between continueing the last game or starting new. PLEASE NOTE THAT CONTINUE SAVED GAME WILL NOT WORK IF YOU HAVE NOT PLAYED THIS GAME MORE THAN ONCE!

 Do not ever exit the game with AC/on, always use exit.

 In-game:

 F2 Buy and sell stocks F6 next day F1 Help

Have fun!

Notice that this is done in prizm basic, i may or may not make a black and white version.
Title: Re: Stock Craze: a casio game
Post by: DJ Omnimaga on April 03, 2012, 11:21:12 pm
Cool, I'll download it and try it when I have some more time. :)
Title: Re: Stock Craze: a casio game
Post by: Yeong on April 04, 2012, 08:17:50 pm
is this for cg10 or cg30?
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on April 05, 2012, 09:57:40 am
is this for cg10 or cg30?

CG10 and CG20 ;)

Also, if anyone has the emulator, could you post screenshots please?
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on April 15, 2012, 01:57:24 pm
Helder7 kindly provided screenshots:

(http://www.casio-scene.com/downloads/stock1_a1U.png)
(http://www.casio-scene.com/downloads/stock2_C1N.png)

The colors are easier to look at on the actual calculator ;)
Title: Re: Stock Craze: a casio game
Post by: turiqwalrus on April 15, 2012, 03:22:58 pm
Helder7 kindly provided screenshots:
(http://www.casio-scene.com/downloads/stock1_a1U.png)
My name was misspelled :P
Could you please replace 'TKWH' with 'TQWH' when you have time?
TIA
It's turning out great, though... Congrats!
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on April 15, 2012, 03:37:55 pm
Helder7 kindly provided screenshots:
(http://www.casio-scene.com/downloads/stock1_a1U.png)
My name was misspelled :P
Could you please replace 'TKWH' with 'TQWH' when you have time?
TIA
It's turning out great, though... Congrats!

Oh, sure sorry *facepalm*

I'll get to that sometime this week.
Title: Re: Stock Craze: a casio game
Post by: Yeong on April 15, 2012, 07:37:35 pm
good to see my stock winning :D
EDIT:nvm. I saw it wrong. :\
Title: Re: Stock Craze: a casio game
Post by: flyingfisch on April 15, 2012, 08:04:12 pm
Well, at least YJNC is up! :D