Simple app scripting language?

If you will be manually entering the inputs, Excel is probably your best bet.

I did whip one up in excel and it works great, but for the screen real estate it takes up with the Title Bar, and the Menu Bar...

It'd be great if it was no bigger than than this:

Position Size Calc 95.png


It'd be a good way to get a feel for putting a simple app together.

Couple of good scripting languages? Vote 'em up.
Python
Ruby
VBScript
C++
Perl
Other
 
Last edited:
I did whip one up in excel and it works great, but for the screen real estate it takes up with the Title Bar, and the Menu Bar...

It'd be great if it was no larger than than this:

Account Size ____
Trade Risk % ____
Stop Loss in Ticks ____
Tick Value ____
Output =
No. Contracts ____

Any suggestions for a good simple app scripting language?

I've searched for a long time for a simple, clean, mini-spreadsheet app to keep on a desktop.

But I've never found one. If you do, rush on back here and post a source.
 
I've searched for a long time for a simple, clean, mini-spreadsheet app to keep on a desktop.

But I've never found one. If you do, rush on back here and post a source.
Indeed. Until I get a transparent overlay of that little calculator above, I may resort to using a second spreadsheet implementation that has as much stripped away and minimized (menu bar, function bars, scroll bars, etc) as possible. That should leave the non-cannibalized main spreadsheet ready for the rest.

Is there a way to get rid or minimize that cannibalized Spreadsheet's Title Bar in windows without doing the same to all the other windows?
 
Python and Qt (PyQt will do). Should not take more than a week to make if you're completely new to it.
 
Python and Qt (PyQt will do). Should not take more than a week to make if you're completely new to it.

I invite you to take a crack at it, and make a contribution to mankind.

A few rows, a few columns, basic calculations.

Thanks in advance!
 
Kotlin should be on the list if you have a Java background.

Python 3 and Golang would also be on my short list for you.
 
I was able to create an app using C# in Visual Studio in a few minutes:

upload_2021-2-11_20-11-38.png


There are no calculated fields as I don't know your exact calculation but adding that functionality would not be difficult.

If you're interested you can DM me and I can share the code with you.
 
Back
Top