Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix formatting platform issue & refactor csv creation #16

Merged
merged 2 commits into from
May 9, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
# TODO add function to store and retrieve config xpaths.

# Import necessary modules.
from sys import platform
from selenium import webdriver
from tkinter import StringVar, messagebox
import tkinter.font as tkFont
Expand All @@ -34,17 +35,21 @@


# Set formatting for currency.
locale.setlocale(locale.LC_ALL, 'English_United States.1252')
if platform == "win32":
# Windows formatting
locale.setlocale(locale.LC_ALL, 'English_United States.1252')
else:
# Linux/OS X formatting
locale.setlocale(locale.LC_ALL, 'en_US.UTF-8')


# Set variables
config.initial_amount = 100000
account_value = float(config.initial_amount)
is_playing = "▶"

# Check if csv file already exists, if not create it.
if os.path.exists("trades.csv"):
pass
else:
if not os.path.exists("trades.csv"):
trades_file = open("trades.csv", "w")

# Set driver to chromedriver.exe
Expand Down