-
Notifications
You must be signed in to change notification settings - Fork 16
ASX Gym Info
James Shen edited this page Jun 13, 2020
·
1 revision
Each step, ASX also returns some info. like how many transactions are fulfilled, company names, and sectors.It can sometimes be useful for learning, However, official evaluations of your agent are not allowed to use this for learning.
following is a sample of info
{
"transactions":{
"300":{
"action":"hold",
"price":1.75,
"volume":-1,
"fulfilled":false
},
"67":{
"action":"hold",
"price":21.84,
"volume":-1,
"fulfilled":false
},
"44":{
"action":"hold",
"price":3.11,
"volume":-1,
"fulfilled":false
},
"100":{
"action":"sell",
"price":61.74,
"volume":67.0,
"fulfilled":false
},
"5":{
"action":"buy",
"price":27.0,
"volume":23.0,
"fulfilled":true
},
"3":{
"action":"buy",
"price":40.75,
"volume":67.0,
"fulfilled":true
},
"4":{
"action":"sell",
"price":27.82,
"volume":85.0,
"fulfilled":false
}
},
"companies":{
"300":{
"name":"Infomedia (ASX:IFM)",
"description":"Infomedia (ASX:IFM) is a leading global provider of SaaS solutions to the parts and service sector of the automotive industry...",
"sector":"Information Technology/Software & Services/Software/Application Software"
},
"67":{
"name":"Seek (ASX:SEK)",
"description":"SEEK is a diverse group of companies that have a unified purpose to help people live more fulfilling and productive working lives...",
"sector":"Communication Services/Media & Entertainment/Interactive Media & Services/Interactive Media & Services"
},
"44":{
"name":"South32 (ASX:S32)",
"description":"South32 is a globally diversified mining and metals company. The Company produces bauxite, alumina, aluminium, energy and metallurgical coal...",
"sector":"Materials/Materials/Metals & Mining/Diversified Metals & Mining"
},
"100":{
"name":"SPDR S&P/ASX 200 Fund (ASX:STW)",
"description":"The SPDR S&P/ASX 200 Fund (ASX:STW) is an Exchange Traded Fund (ETF) which seeks to closely match, before fees and expenses, the returns of..."
},
"5":{
"name":"National Australia Bank (ASX:NAB)",
"description":"As Australias largest business bank",
"sector":"Financials/Banks/Banks/Diversified Banks"
}
}
}
OpenAI ASX Gym Environment by Guidebee IT