Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
SIGMATMPY-library is an APIRequest driven trading and monitoring platform. Each functionality (trades, price etc.) is represented by it's own class covering all aspect of that functionality.
$ pip install sigmatmpy
import sigmatmpy
# initualize APIRequest token
username = 'username'
password = 'password'
API = sigmatmpy.API(username,password)
# open a live order
API.open_order('EURUSD-R', 1, 0.01, 1.18245, 3, 0, 0,'comment')
# open a pending order (limit and stop order)
API.open_order('EURUSD-R', 3, 0.01, 1.18245, 3, 0, 0,'comment')
# modify a order
API.modify_order(2313839, 1.18245, 1.1825, 1.1824, 0)
# check if open order succeed
result = API.open_order('EURUSD', 1, 0.01, 1.18245, 3, 0, 0,'comment')
if result['code'] == 0:
# successful
continue
else:
# unsuccessful
continue
# close a live order
API.close_order(9999999, 0.01, 1.18245)
# delete a pending order
API.close_order(9999999)
# get trades history by datetime
API.trades_history_by_datetime('2021-07-04 000000', '2021-07-16 075150')
# get trades history by unixtime
API.trades_history_by_unixtime(1625991769, 1626423769)
# get live trades
API.live_trades()
# get account information
API.account_info()
# get server time
API.server_time()
# initialize data streaming for XAUUSD
API.initialize_price_stream('XAUUSD')
# get current price
API.current_price('XAUUSD')
# get XAUUSD 5 min bar chart data
API.bar_chart('XAUUSD', 5)
# check appearance of new bar
API.check_new_bar('XAUUSD', 5)
Code | Description |
---|---|
129 | Invalid price. |
130 | Invalid stops. |
131 | Invalid trade volume. |
134 | Not enough money. |
151 | The order you close is not under your account. |
153 | The symbol of order you placed is invalid. |
Please read contributors for more information.
Please read LICENSE.md for more detail.
FAQs
SigmaTM manager api for python user
We found that sigmatmpy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.