Skip to content

Latest commit

 

History

History
55 lines (37 loc) · 1.78 KB

CONTRIBUTING.md

File metadata and controls

55 lines (37 loc) · 1.78 KB

Contributing to FinAILAb-Datasets

If you are interested in contributing to FinAILAb-Datasets, your contributions will fall into two categories:

  1. You want to propose a new Data source and include it in the documentation
    • Create an python code about your intended data set and include the details under the "Data sources" and link the items to whichever section is good.
  2. You want to implement a new item:

Once you finish implementing a additional items, please send a Pull Request to https://github.com/tatsath/FinAILabDatasets/

If you are not familiar with creating a Pull Request, here are some guides:

Developing FinAILAb-Datasets

To develop FinAILAb-Datasets on your machine, here are some tips:

  1. Clone a copy of FinAILAb-Datasets from source:
git clone https://github.com/tatsath/FinAILabDatasets
cd https://github.com/tatsath/FinAILabDatasets
  1. Install Stable-Baselines in develop mode, with support for building the docs and running tests:
pip install -e .[docs,tests]

Codestyle

Please document each function/method and type them using the following template:

def my_function(arg1: type1, arg2: type2) -> returntype:
    """
    Short description of the function.

    :param arg1: (type1) describe what is arg1
    :param arg2: (type2) describe what is arg2
    :return: (returntype) describe what is returned
    """
    ...
    return my_variable