diff --git a/apply_guidance.ts b/apply_guidance.ts index d066813..1774d0e 100644 --- a/apply_guidance.ts +++ b/apply_guidance.ts @@ -61,6 +61,12 @@ export function apply_guidance(doc: any) { let targPrice = targetPrice * (1 + markAdder); let targReason = `Target price ${targetPrice} + ${markAddReason}`; + let price = { + cust: [custPrice, custReason], + mark: [markPrice, markReason], + targ: [targPrice, targReason] + } + let finalPrice = minExcludingNull(listUSD,custPrice,targPrice); // ------if there is not target price just exit---------------