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: hide calculator for partially executed sells #555

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
8 changes: 5 additions & 3 deletions public/js/CoinWrapperBuySignal.js
Original file line number Diff line number Diff line change
Expand Up @@ -366,11 +366,13 @@ class CoinWrapperBuySignal extends React.Component {

const nextGridAmount = nextGridQty * currentPrice;

const executedGrids = gridTrade.filter(trade => trade.executed).length;
const executedBuyGrids = gridTrade.filter(trade => trade.executed).length;

const hasManualTrade = currentGridTradeIndex !== executedGrids;
const hasManualTrade = currentGridTradeIndex !== executedBuyGrids;

return (nextGridAmount > 0) & !hasManualTrade ? (
const isSingleSellGrid = symbolConfiguration.sell.currentGridTradeIndex >=0 & sellGridTrade.length == 1;

return (nextGridAmount > 0) & !hasManualTrade & isSingleSellGrid ? (
<React.Fragment key={'coin-wrapper-buy-next-grid-row-' + symbol}>
<div className='coin-info-column coin-info-column-price'>
<span className='coin-info-label'>
Expand Down