커뮤니티

예스랭귀지 Q&A

글쓰기
답변완료

문의

/@version=5indicator("Higher Time Frame Support/Resistance [BigBeluga]", "HTF Support/Resistance [BigBeluga]", overlay = true, max_bars_back = 5000, max_labels_count = 500)// Groupsstring group1 = "Levels 1"string group2 = "Levels 2"string group3 = "Levels 3"string group4 = "Levels 4"// INPUTS ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――{bool on_1 = input.bool(true, "", inline = group1)int len1 = input.int(4, group1, inline = group1),string timeframe1 = input.timeframe("240", "", inline = group1),string style1 = input.string("Solid", "", ["Solid", "Dashed", "Dotted"], inline = group1)color color1 = input.color(color.green, "", inline = group1)bool on_2 = input.bool(true, "", inline = group2)int len2 = input.int(5, group2, inline = group2),string timeframe2 = input.timeframe("720", "", inline = group2),string style2 = input.string("Solid", "", ["Solid", "Dashed", "Dotted"], inline = group2)color color2 = input.color(color.blue, "", inline = group2)bool on_3 = input.bool(true, "", inline = group3)int len3 = input.int(5, group3, inline = group3),string timeframe3 = input.timeframe("D", "", inline = group3),string style3 = input.string("Solid", "", ["Solid", "Dashed", "Dotted"], inline = group3)color color3 = input.color(color.purple, "", inline = group3)bool on_4 = input.bool(true, "", inline = group4)int len4 = input.int(5, group4, inline = group4),string timeframe4 = input.timeframe("W", "", inline = group4),string style4 = input.string("Solid", "", ["Solid", "Dashed", "Dotted"], inline = group4)color color4 = input.color(color.orange, "", inline = group4)// Shadow of levels inputsint s_lWidth = input.int(5, "Levels Width", group = "Shadow", inline = "Shadow")int s_tnsp = input.int(85, "Transperent", group = "Shadow", inline = "Shadow")int offset = input.int(15, "Offset", group = "Labels")string t_size = input.string("Small", "Size", ["Tiny", "Small", "Normal"], group = "Labels")// }// CALCULATIONS――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――{// Non Repainting data request functionnon_rep_request(tf, expresion1)=> indexHighTF = barstate.isrealtime ? 1 : 0 indexCurrTF = barstate.isrealtime ? 0 : 1 nonRepainting = request.security(syminfo.tickerid, tf, expresion1[indexHighTF])[indexCurrTF] nonRepainting// Pivot levels functionpivot_levels(timeframe, len, color, stl)=> style = switch stl "Solid" => line.style_solid "Dotted" => line.style_dotted "Dashed" => line.style_dashed text_s = switch t_size "Small" => size.small "Tiny" => size.tiny "Normal" => size.normal var line pivot_h = line(na) var line pivot_l = line(na) var line pivot_hs = line(na) var line pivot_ls = line(na) var float p_h = float(na) var float p_l = float(na) bool ph = ta.pivothigh(len, len) bool pl = ta.pivotlow(len, len) float p_H = non_rep_request(timeframe, (not na(ph) ? high[len] : na)) float p_L = non_rep_request(timeframe, (not na(pl) ? low[len] : na)) if not na(p_H) p_h := float(na) p_h := p_H pivot_h := line.new(bar_index[len], p_H, last_bar_index, p_H, color = color) pivot_h.set_extend(extend.both) pivot_h.set_style(style) line.delete(pivot_h[1]) // Shadow Line pivot_hs := line.new(bar_index[len], p_H, last_bar_index, p_H, color = color.new(color, s_tnsp), width = s_lWidth) pivot_hs.set_extend(extend.both) line.delete(pivot_hs[1]) if not na(p_L) p_l := float(na) p_l := p_L pivot_l := line.new(bar_index[len], p_L, last_bar_index, p_L, color = color) pivot_l.set_extend(extend.both) pivot_l.set_style(style) line.delete(pivot_l[1]) // Shadow Line pivot_ls := line.new(bar_index[len], p_L, last_bar_index, p_L, color = color.new(color, s_tnsp), width = s_lWidth) pivot_ls.set_extend(extend.both) line.delete(pivot_ls[1]) if barstate.islast count1 = 0 count2 = 0 for i = 1 to 4000 if high[i]*1.0009 >= p_h and high[i] *0.9999 <= p_h and count1 == 0 count1 := 1 label.delete(label.new(bar_index[i], p_h, "", color = color, style = label.style_label_down, size = size.tiny)[1]) if low[i]*1.0009 >= p_l and low[i]*0.999 <= p_l and count2 == 0 count2 := 1 label.delete(label.new(bar_index[i], p_l, "", color = color, style = label.style_label_up, size = size.tiny)[1]) label.delete(label.new(bar_index+offset, p_h, timeframe + " Pivot High " + str.tostring(p_h, "(#.#)"), color = chart.bg_color, style = label.style_label_left, textcolor = chart.fg_color, size = text_s)[1]) label.delete(label.new(bar_index+offset, p_l, timeframe + " Pivot Low " + str.tostring(p_l, "(#.#)"), color = chart.bg_color, style = label.style_label_left, textcolor = chart.fg_color, size = text_s)[1])if on_1 pivot_levels(timeframe1,len1,color1, style1)if on_2 pivot_levels(timeframe2,len2,color2, style2)if on_3 pivot_levels(timeframe3,len3,color3, style3)if on_4 pivot_levels(timeframe4,len4,color4, style4)// }레벨에서 15분 30분 1시간 4시간으로 변환하여 나타나도록 부탁드립니다.
타분봉swinhigh 타분봉swinglow
프로필 이미지
레전드
2025-10-28
84
글번호 227387
지표
답변완료

종목검색식 부탁드립니다

전월봉의 고점을 돌파하는 일봉 . 부탁 드립니다.
프로필 이미지
nams60
2025-10-28
85
글번호 227385
종목검색
답변완료

부탁드립니다

수고하십니다아래수식을 오류 없게 수정부탁드립니다 //※※==>내부함수의입력값 2개 필요 수정요망??? 오류부분Inputs: PivotLength(10), TrendLength(50), ShowProfile(true), ColorUp(Blue), ColorDn(Red);Variables: i(0), j(0), k(0), PH(0), PL(0), HighestH(0), LowestL(0), TrendLine(0), ATRValue(0), IsTrendUp(false), PivotDetected(false), StartBar(0), // Volume Profile 관련 TopPrice(0), BotPrice(0), Levels(0), StepSize(0), MidPrice(0), // POC 관련 POCPrice(0), POCVolume(0), POCBar(0), // Drawing Objects TLRef(0), TextRef(0), POCLineRef(0), PivotTextRef(0), // 색상 CurrentColor(0), ProfileColor(0), // Pivot 라벨 위치 PivotY(0), // Volume Profile 바 너비 BarWidth(0);Arrays: VolumeBins[1000](0), VPLines[1000](0), VPStartBars[100](0), VPEndBars[100](0);// ATR 계산ATRValue = ATR(200) * 0.1;// Pivot 감지PH = 0;PL = 0;// Pivot High 감지if CurrentBar > PivotLength * 2 then begin if High[PivotLength] == Highest(High, 2 * PivotLength + 1) then PH = High[PivotLength];end;// Pivot Low 감지if CurrentBar > PivotLength * 2 then begin if Low[PivotLength] == Lowest(Low, 2 * PivotLength + 1) then PL = Low[PivotLength];end;// 트렌드 계산HighestH = Highest(High, TrendLength);LowestL = Lowest(Low, TrendLength);TrendLine = (HighestH + LowestL) / 2;// 트렌드 방향 결정if High == HighestH then IsTrendUp = true;if Low == LowestL then IsTrendUp = false;// 색상 설정if IsTrendUp == false then CurrentColor = ColorUp;else CurrentColor = ColorDn;// Pivot 감지PivotDetected = false;if IsTrendUp == false then begin if PH > 0 then PivotDetected = true;end else begin if PL > 0 then PivotDetected = true;end;// Volume Profile 계산if CurrentBar - PivotLength - StartBar > PivotLength then begin if PivotDetected then begin // 이전 POC 라인 연장 if POCLineRef > 0 then begin TL_SetEnd(POCLineRef, Date[PivotLength], Time[PivotLength], POCPrice); end; StartBar = CurrentBar - PivotLength; // 경계 설정 TopPrice = High[PivotLength]; BotPrice = Low[PivotLength]; for i = 0 to PivotLength * 2 begin if High[i] > TopPrice then TopPrice = High[i]; if Low[i] < BotPrice then BotPrice = Low[i]; end; // 레벨 계산 if ATRValue > 0 and (TopPrice - BotPrice) > 0 then begin Levels = IntPortion((TopPrice - BotPrice) / ATRValue); if Levels < 1 then Levels = 1; if Levels > 999 then Levels = 999; StepSize = (TopPrice - BotPrice) / Levels; // Volume Bins 초기화 for k = 0 to Levels begin VolumeBins[k] = 0; end; // Volume 수집 for i = 0 to PivotLength * 2 begin for k = 0 to Levels begin MidPrice = BotPrice + StepSize * k + StepSize / 2; if AbsValue(MidPrice - Close[i]) <= StepSize * 2 then VolumeBins[k] = VolumeBins[k] + Volume[i]; end; end; // POC (Point of Control) 찾기 POCVolume = 0; POCPrice = 0; POCBar = 0; for k = 0 to Levels begin if VolumeBins[k] > POCVolume then begin POCVolume = VolumeBins[k]; MidPrice = BotPrice + StepSize * k + StepSize / 2; POCPrice = MidPrice; // POC 바 위치 계산 (Volume 비율에 따라) if POCVolume > 0 then POCBar = Round((VolumeBins[k] / POCVolume) * PivotLength); //※※==>내부함수의입력값 2개 필요 수정요망??? else POCBar = 0; end; end; // Volume Profile 시각화 (Profile이 켜져 있을 때만) if ShowProfile then begin // 이전 Volume Profile 라인 삭제 for k = 0 to Levels begin if VPLines[k] > 0 then begin TL_Delete(VPLines[k]); VPLines[k] = 0; end; end; // Volume Profile 히스토그램 그리기 for k = 0 to Levels begin if VolumeBins[k] > 0 then begin MidPrice = BotPrice + StepSize * k + StepSize / 2; // 바 너비 계산 (최대 Volume 대비 비율) if POCVolume > 0 then BarWidth = Round((VolumeBins[k] / POCVolume) * PivotLength); //※※==>내부함수의입력값 2개 필요 수정요망??? else BarWidth = 0; // Volume Profile 바 그리기 if BarWidth > 0 then begin VPLines[k] = TL_New( Date[PivotLength], Time[PivotLength], MidPrice, Date[PivotLength - BarWidth], Time[PivotLength - BarWidth], MidPrice ); TL_SetColor(VPLines[k], CurrentColor); TL_SetSize(VPLines[k], 3); end; end; end; // POC 라인 그리기 if POCPrice > 0 and POCBar > 0 then begin if POCLineRef > 0 then TL_Delete(POCLineRef); POCLineRef = TL_New( Date[PivotLength - POCBar], Time[PivotLength - POCBar], POCPrice, Date[PivotLength - POCBar - 15], Time[PivotLength - POCBar - 15], POCPrice ); TL_SetColor(POCLineRef, CurrentColor); TL_SetSize(POCLineRef, 2); TL_SetExtRight(POCLineRef, false); // POC 라벨 if TextRef > 0 then Text_Delete(TextRef); TextRef = Text_New( Date[PivotLength - POCBar], Time[PivotLength - POCBar], POCPrice, NumToStr(POCVolume, 0) ); Text_SetColor(TextRef, CurrentColor); end; // Pivot 마커 if PivotTextRef > 0 then Text_Delete(PivotTextRef); if IsTrendUp == false then begin // Pivot High PivotY = PH; PivotTextRef = Text_New( Date[PivotLength], Time[PivotLength], PivotY, "●" ); Text_SetColor(PivotTextRef, CurrentColor); Text_SetLocation(PivotTextRef, Date[PivotLength], Time[PivotLength], PivotY + StepSize); end else begin // Pivot Low PivotY = PL; PivotTextRef = Text_New( Date[PivotLength], Time[PivotLength], PivotY, "●" ); Text_SetColor(PivotTextRef, CurrentColor); Text_SetLocation(PivotTextRef, Date[PivotLength], Time[PivotLength], PivotY - StepSize); end; end; end; end;end;// POC 라인을 현재 바까지 계속 연장if POCLineRef > 0 and POCPrice > 0 then begin TL_SetEnd(POCLineRef, Date, Time, POCPrice);end;// 트렌드 라인 플롯Plot1(TrendLine, "Trend", CurrentColor, Def, 4);// POC 레벨 플롯 (Profile이 꺼져 있을 때)if ShowProfile == False and POCPrice > 0 then Plot2(POCPrice, "POC Level", CurrentColor, Def, 2);else NoPlot(2);
프로필 이미지
파생돌이
2025-10-28
113
글번호 227384
지표
답변완료

부탁드립니다

수고하십니다아래수식을 오류 없게 수정부탁드립니다Inputs: Period(200), VPResolution(50), ShowPoC(true), ShowPivots(true), PivotLength(10), PivotFilter(20);Variables: i(0), j(0), k(0), HighestPrice(0), LowestPrice(0), BinSize(0), BinLow(0), BinHigh(0), BinMid(0), BinValue(0), MaxBinValue(0), VolPercent(0), Left(0), Right(0), PocPrice(0), PocVolume(0), TotalDelta(0), CurrentDelta(0), // Pivot 관련 PH(0), PL(0), PivotPrice(0), PivotBar(0), PivotIndex(0), // Drawing Objects TLRef(0), TextRef(0), RectRef(0), // 색상 ProfileColor(0), BarColor(0);Arrays: VolumeBins[100](0), DeltaBins[100](0), PivotPrices[500](0), PivotBars[500](0), PivotTypes[500](0), // 1 = High, -1 = Low PivotProcessed[500](0), // 0 = not processed, 1 = processed VPTrendLines[100](0), VPLabels[100](0);// 이전 Drawing Objects 삭제 (마지막 바에서만)if Date <> Date[1] or Time <> Time[1] then begin for i = 0 to VPResolution - 1 begin if VPTrendLines[i] > 0 then begin TL_Delete(VPTrendLines[i]); VPTrendLines[i] = 0; end; if VPLabels[i] > 0 then begin Text_Delete(VPLabels[i]); VPLabels[i] = 0; end; end;end;// Pivot High 감지PH = 0;if CurrentBar > PivotLength * 2 then begin if High[PivotLength] == Highest(High, 2 * PivotLength + 1) then PH = High[PivotLength];end;// Pivot Low 감지PL = 0;if CurrentBar > PivotLength * 2 then begin if Low[PivotLength] == Lowest(Low, 2 * PivotLength + 1) then PL = Low[PivotLength];end;// Pivot 저장 및 처리if PH > 0 then begin PivotIndex = -1; // 빈 슬롯 찾기 for i = 0 to 499 begin if PivotBars[i] = 0 then begin PivotIndex = i; break; end; end; if PivotIndex >= 0 then begin PivotPrices[PivotIndex] = PH; PivotBars[PivotIndex] = CurrentBar - PivotLength; PivotTypes[PivotIndex] = 1; // High PivotProcessed[PivotIndex] = 0; end;end;if PL > 0 then begin PivotIndex = -1; // 빈 슬롯 찾기 for i = 0 to 499 begin if PivotBars[i] = 0 then begin PivotIndex = i; break; end; end; if PivotIndex >= 0 then begin PivotPrices[PivotIndex] = PL; PivotBars[PivotIndex] = CurrentBar - PivotLength; PivotTypes[PivotIndex] = -1; // Low PivotProcessed[PivotIndex] = 0; end;end;// Volume Profile 계산 및 시각화if CurrentBar >= Period then begin // 범위 계산 HighestPrice = Highest(High, Period); LowestPrice = Lowest(Low, Period); if HighestPrice > LowestPrice then begin BinSize = (HighestPrice - LowestPrice) / VPResolution; // Bins 초기화 for i = 0 to VPResolution - 1 begin VolumeBins[i] = 0; DeltaBins[i] = 0; end; // Volume 데이터 수집 for j = 0 to Period - 1 begin for i = 0 to VPResolution - 1 begin BinLow = LowestPrice + BinSize * i; BinHigh = BinLow + BinSize; if Close[j] >= BinLow - BinSize and Close[j] < BinHigh + BinSize then begin VolumeBins[i] = VolumeBins[i] + Volume[j]; // Delta 계산 if Close[j] > Open[j] then DeltaBins[i] = DeltaBins[i] + Volume[j]; else DeltaBins[i] = DeltaBins[i] - Volume[j]; end; end; end; // 최대 Volume 찾기 MaxBinValue = 0; for i = 0 to VPResolution - 1 begin if VolumeBins[i] > MaxBinValue then MaxBinValue = VolumeBins[i]; end; // PoC 및 Total Delta 계산 PocVolume = 0; PocPrice = 0; TotalDelta = 0; for i = 0 to VPResolution - 1 begin TotalDelta = TotalDelta + DeltaBins[i]; if VolumeBins[i] > PocVolume then begin PocVolume = VolumeBins[i]; BinLow = LowestPrice + BinSize * i; BinHigh = BinLow + BinSize; PocPrice = (BinLow + BinHigh) / 2; end; end; // 색상 결정 (Delta 기반) if TotalDelta > 0 then ProfileColor = Cyan; else ProfileColor = Red; // Volume Profile 히스토그램 그리기 (마지막 바에서만) if LastBarOnChart then begin Left = CurrentBar - Period; for i = 0 to VPResolution - 1 begin BinLow = LowestPrice + BinSize * i; BinHigh = BinLow + BinSize; BinMid = (BinLow + BinHigh) / 2; BinValue = VolumeBins[i]; if MaxBinValue > 0 then begin VolPercent = (BinValue / MaxBinValue) * 100; Right = Left + Round((BinValue / MaxBinValue) * 50); // Delta 기반 색상 if DeltaBins[i] > 0 then BarColor = Cyan else BarColor = Red; // Volume Profile 바 그리기 (TrendLine 사용) if VPTrendLines[i] > 0 then TL_Delete(VPTrendLines[i]); VPTrendLines[i] = TL_New(Date[Period], Time[Period], BinMid, Date[Period - Right + Left], Time[Period - Right + Left], BinMid); TL_SetColor(VPTrendLines[i], BarColor); TL_SetSize(VPTrendLines[i], 4); // Pivot과 Volume Profile 교차점 표시 if ShowPivots then begin for k = 0 to 499 begin if PivotBars[k] > 0 and PivotProcessed[k] = 0 then begin PivotPrice = PivotPrices[k]; PivotBar = PivotBars[k]; // Pivot이 Volume Profile 범위 내에 있고 필터 조건 만족 if AbsValue(BinMid - PivotPrice) <= BinSize and VolPercent >= PivotFilter and CurrentBar - Period <= PivotBar then begin // Pivot 라인 그리기 if PivotTypes[k] = 1 then begin // Pivot High TLRef = TL_New(Date[CurrentBar - PivotBar + PivotLength], Time[CurrentBar - PivotBar + PivotLength], PivotPrice, Date[CurrentBar - PivotBar - PivotLength], Time[CurrentBar - PivotBar - PivotLength], PivotPrice); TL_SetColor(TLRef, DarkRed); TL_SetSize(TLRef, 2); // 라벨 추가 TextRef = Text_New(Date[CurrentBar - PivotBar], Time[CurrentBar - PivotBar], PivotPrice, NumToStr(BinValue, 0) + " (" + NumToStr(VolPercent, 0) + "%)"); Text_SetColor(TextRef, DarkRed); Text_SetLocation(TextRef, Date[CurrentBar - PivotBar], Time[CurrentBar - PivotBar], PivotPrice + BinSize); // 연장선 그리기 (Dotted) TLRef = TL_New(Date[CurrentBar - PivotBar], Time[CurrentBar - PivotBar], PivotPrice, Date, Time, PivotPrice); TL_SetColor(TLRef, DarkRed); TL_SetStyle(TLRef, Tool_Dotted); TL_SetExtRight(TLRef, True); end else begin // Pivot Low TLRef = TL_New(Date[CurrentBar - PivotBar + PivotLength], Time[CurrentBar - PivotBar + PivotLength], PivotPrice, Date[CurrentBar - PivotBar - PivotLength], Time[CurrentBar - PivotBar - PivotLength], PivotPrice); TL_SetColor(TLRef, DarkGreen); TL_SetSize(TLRef, 2); // 라벨 추가 TextRef = Text_New(Date[CurrentBar - PivotBar], Time[CurrentBar - PivotBar], PivotPrice, NumToStr(VolPercent, 0) + "% (" + NumToStr(BinValue, 0) + ")"); Text_SetColor(TextRef, DarkGreen); Text_SetLocation(TextRef, Date[CurrentBar - PivotBar], Time[CurrentBar - PivotBar], PivotPrice - BinSize); // 연장선 그리기 (Dotted) TLRef = TL_New(Date[CurrentBar - PivotBar], Time[CurrentBar - PivotBar], PivotPrice, Date, Time, PivotPrice); TL_SetColor(TLRef, DarkGreen); TL_SetStyle(TLRef, Tool_Dotted); TL_SetExtRight(TLRef, True); end; PivotProcessed[k] = 1; end; end; end; end; end; end; end; end;end;// 오래된 Pivot 제거for i = 0 to 499 begin if PivotBars[i] > 0 and CurrentBar - PivotBars[i] > Period then begin PivotBars[i] = 0; PivotPrices[i] = 0; PivotTypes[i] = 0; PivotProcessed[i] = 0; end;end;// PoC 레벨 표시if ShowPoC and PocPrice > 0 then begin Plot1(PocPrice, "PoC Level", ProfileColor, Default, 2); // PoC 라벨 (마지막 바에서만) if LastBarOnChart then begin TextRef = Text_New(Date, Time, PocPrice, "POC: " + NumToStr(PocVolume, 0)); Text_SetColor(TextRef, ProfileColor); Text_SetLocation(TextRef, Date, Time, PocPrice); end;end;
프로필 이미지
파생돌이
2025-10-28
88
글번호 227383
지표
답변완료

수식 요청드립니다.

안녕하세요.매수진입 수식 1개로 피라미딩 진입하여 최대 5개까지 누적 매수 한다고 했을 시첫번째 매수진입 이후에는 첫번째 매수진입 시점부터 10분이상 경과 + 매수진입 조건 달성시 두번째 매수진입두번째 매수진입 시점부터 10분이상 경과 + 매수진입 조건 달성시 세번째 매수진입세번째 매수진입 시점부터 10분이상 경과 + 매수진입 조건 달성시 네번째 매수진입네번째 매수진입 시점부터 10분이상 경과 + 매수진입 조건 달성시 다섯번째 매수진입할수 있도록 하는 수식을 부탁드립니다. 감사합니다.
프로필 이미지
트레이더365
2025-10-28
87
글번호 227382
시스템

파생돌이 님에 의해서 삭제되었습니다.

프로필 이미지
파생돌이
2025-10-27
10
글번호 227381
지표
답변완료

종목검색 수식완성 부탁드립니다.

안녕하세요. 종목검색 수식 부탁드립니다.◆조건 1. 금일 첫 30분봉에서 ADX(10) > 25 이고, CrossUp(DI⁺, ADX) ◆조건 2. Chaikin Oscillator (3,10) 금일 첫 30분봉의 CO 값이 전일 마지막 30분봉 CO의 1.5배 이상 AND 금일 첫 30분봉 CO ≥ 0 ◆조건 3. 금일 첫 30분봉에서 RSI(14) 52 상향돌파 이상 세가지 조건을 만족하는 종목을 검색하는 수식을 부탁드립니다.감사합니다.
ADX RSI ChaikinOscillator
프로필 이미지
행복사랑채
2025-10-27
79
글번호 227378
종목검색
답변완료

부탁 드립니다.

Input : P(10); Var : LRLv(0); LRLv = LRL(C, P); Var1 = LRLv; Var2 = Var1[1];Plot1(var1); plot2(Var2); Print("C:\\WinnerData\\realtime_mymz25.csv", "%.f,%.f,%.f,%.1f,%.1f,%.f", Date, Time, Close, Var1, Var2, DayClose(1));위 수식에서 C:\WinnerData\realtime_mymz25.csv 의 출력에서 Date 의 출력 형식이 '2025-10-27 17:40:00 20251027' 와 같이 출력이 됩니다. Date 출력 형식에서 20251027(YYYYMMDD) 와 같이 년월일 만 출력이 되도록 수식을 변경 하여 주시면 감사하겠습니다.C:\WinnerData\realtime_mymz25.csv 출력내용2025-10-27 17:40:00 20251027 173204 47654 47767 .1 47768.8 47387Date : 2025-10-27-27 17:40:00 20251027 -------> 여기서 20251027 만 출력 되게 해 주십시요. (2025-10-27 17:40:00 이 부분이 없어야 합니다)아래의 항목들은 정상적으로 출력 됩니다.Time : 173204 Close : 47654var1 : 47767.1 var2 : 47768.8 DayClose(1) : 47387
Print csv
프로필 이미지
너무조아
2025-10-27
89
글번호 227371
지표
답변완료

종목검색 문의 드립니다

오늘 하루중 5분봉상 RSI가 70이상 올라갔던 종목을 장끝나고 찾아볼수 있는 검색식 어떻게 될까요?
RSI
프로필 이미지
비리번
2025-10-27
86
글번호 227369
종목검색
답변완료

부탁드립니다

1,A= Disparity(Period); D=ValueWhen(1, crossup(A, 기준) OR crossdown(A, 기준) ,가격)지표조건 period 120 기준 101 가격 (H+L)/2D지표값이 10%이상하락 했다 N일전에 하락하고 오늘 까지 하락한 지표값이 유지중인 종목 검색식 부탁 드립니다 N일은 5일 7일 10일 등등 입니다2,A1=Highest(V,기간1);B1=Valuewhen(1,V>A1(1),(O+C+L+H+C)/5);지표조건기간1 60B1지표값이 10%이상하락 했다 N일전에 하락하고 오늘 까지 하락한 지표값이 유지중인 종목 검색식 부탁 드립니다 N일은 5일 7일 10일 등등 입니다
프로필 이미지
님이랑
2025-10-27
100
글번호 227346
종목검색