Skip to content

Commit

Permalink
[Mod] change logo image size
Browse files Browse the repository at this point in the history
  • Loading branch information
vnpy committed Dec 20, 2023
1 parent 48b5853 commit e18faee
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# By Traders, For Traders.

<p align="center">
<img src ="https://github.com/veighna-global/vnpy_crypto/blob/dev/logo.png"/>
<img src ="https://github.com/veighna-global/vnpy_crypto/blob/dev/logo.png" width="300" height="300"/>
</p>

<p align="center">
Expand All @@ -12,7 +12,7 @@
<img src ="https://img.shields.io/github/license/veighna-global/vnpy_crypto.svg?color=orange"/>
</p>

VeighNa Crypto (vnpy_crypto) is a fork of the original [VeighNa (vnpy)](https://github.com/vnpy/vnpy) quant trading platform and focus completely on the crypto market.
VeighNa Crypto (vnpy_crypto) is a fork of [VeighNa (vnpy)](https://github.com/vnpy/vnpy) quant trading platform and focus completely on the crypto market.

## Functional Features

Expand Down
6 changes: 3 additions & 3 deletions examples/client_server/run_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from vnpy.trader.ui import MainWindow, create_qapp
from vnpy.trader.event import EVENT_LOG

from vnpy_binance import BinaneUsdtGateway
from vnpy_binance import BinanceUsdtGateway
from vnpy_rpcservice import RpcServiceApp
from vnpy_rpcservice.rpc_service.engine import EVENT_RPC_LOG

Expand All @@ -18,7 +18,7 @@ def main_ui():

main_engine = MainEngine(event_engine)

main_engine.add_gateway(BinaneUsdtGateway)
main_engine.add_gateway(BinanceUsdtGateway)
main_engine.add_app(RpcServiceApp)

main_window = MainWindow(main_engine, event_engine)
Expand All @@ -41,7 +41,7 @@ def main_terminal():
event_engine.register(EVENT_RPC_LOG, process_log_event)

main_engine = MainEngine(event_engine)
main_engine.add_gateway(BinaneUsdtGateway)
main_engine.add_gateway(BinanceUsdtGateway)
rpc_engine = main_engine.add_app(RpcServiceApp)

setting = {
Expand Down
4 changes: 2 additions & 2 deletions examples/no_ui/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from vnpy.trader.setting import SETTINGS
from vnpy.trader.engine import MainEngine

from vnpy_binance import BinaneUsdtGateway
from vnpy_binance import BinanceUsdtGateway
from vnpy_ctastrategy import CtaStrategyApp
from vnpy_ctastrategy.base import EVENT_CTA_LOG

Expand Down Expand Up @@ -61,7 +61,7 @@ def run_child():

event_engine = EventEngine()
main_engine = MainEngine(event_engine)
main_engine.add_gateway(BinaneUsdtGateway)
main_engine.add_gateway(BinanceUsdtGateway)
cta_engine = main_engine.add_app(CtaStrategyApp)
main_engine.write_log("主引擎创建成功")

Expand Down
4 changes: 2 additions & 2 deletions examples/veighna_trader/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from vnpy.trader.engine import MainEngine
from vnpy.trader.ui import MainWindow, create_qapp

from vnpy_binance import BinaneUsdtGateway
from vnpy_binance import BinanceUsdtGateway
# from vnpy_binancetest import CtptestGateway
# from vnpy_mini import MiniGateway
# from vnpy_femas import FemasGateway
Expand Down Expand Up @@ -50,7 +50,7 @@ def main():

main_engine = MainEngine(event_engine)

main_engine.add_gateway(BinaneUsdtGateway)
main_engine.add_gateway(BinanceUsdtGateway)
# main_engine.add_gateway(CtptestGateway)
# main_engine.add_gateway(MiniGateway)
# main_engine.add_gateway(FemasGateway)
Expand Down

0 comments on commit e18faee

Please sign in to comment.